From da07a912291d0e3ab0ea165926a7bf52485efc22 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Fri, 13 Oct 2017 17:24:48 +0100 Subject: [PATCH] reformated data files with argument data --- .../auto-complete/CommandManager.coffee | 119 ++++-------------- .../package_definition_snippets.coffee | 1 + .../auto-complete/package_definitions.coffee | 1 - .../auto-complete/top_hundred_snippets.coffee | 1 + 4 files changed, 28 insertions(+), 94 deletions(-) create mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee delete mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee create mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/top_hundred_snippets.coffee diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee index d30b56ca58..7d67b537b4 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee @@ -1,88 +1,14 @@ define [ - "./package_definitions" - ], (packageCommandMappings) -> - noArgumentCommands = [ - 'item', 'hline', 'lipsum', 'centering', 'noindent', 'textwidth', 'draw', - 'maketitle', 'newpage', 'verb', 'bibliography', 'hfill', 'par', - 'in', 'sum', 'cdot', 'ldots', 'linewidth', 'left', 'right', 'today', - 'clearpage', 'newline', 'endinput', 'tableofcontents', 'vfill', - 'bigskip', 'fill', 'cleardoublepage', 'infty', 'leq', 'geq', 'times', - 'alpha', 'beta', 'gamma', 'delta', 'epsilon', 'varepsilon', 'zeta', - 'eta', 'theta', 'vartheta', 'iota', 'kappa', 'lambda', 'mu', 'nu', 'xi', - 'pi', 'varpi', 'rho', 'varrho', 'sigma', 'varsigma', 'tau', 'upsilon', - 'phi', 'varphi', 'chi', 'psi', 'omega', 'Gamma', 'Delta', 'Theta', - 'Lambda', 'Xi', 'Pi', 'Sigma', 'Upsilon', 'Phi', 'Psi', 'Omega' - ] - singleArgumentCommands = [ - 'chapter', 'usepackage', 'section', 'label', 'textbf', 'subsection', - 'vspace', 'cite', 'textit', 'documentclass', 'includegraphics', 'input', - 'emph','caption', 'ref', 'title', 'author', 'texttt', 'include', - 'hspace', 'bibitem', 'url', 'large', 'subsubsection', 'textsc', 'date', - 'footnote', 'small', 'thanks', 'underline', 'graphicspath', 'pageref', - 'section*', 'subsection*', 'subsubsection*', 'sqrt', 'text', - 'normalsize', 'footnotesize', 'Large', 'paragraph', 'pagestyle', - 'thispagestyle', 'bibliographystyle', 'hat' - ] - doubleArgumentCommands = [ - 'newcommand', 'frac', 'dfrac', 'renewcommand', 'setlength', 'href', - 'newtheorem' - ] - tripleArgumentCommands = [ - 'addcontentsline', 'newacronym', 'multicolumn' - ] - special = ['LaTeX', 'TeX'] + "./top_hundred_snippets", + "./package_definition_snippets" +], (topHundred, packageCommandMappings) -> - rawCommands = [].concat( - noArgumentCommands, - singleArgumentCommands, - doubleArgumentCommands, - tripleArgumentCommands, - special - ) + rawCommands = Object.keys topHundred - noArgumentCommands = for cmd in noArgumentCommands - { - caption: "\\#{cmd}" - snippet: "\\#{cmd}" - meta: "cmd" - } - singleArgumentCommands = for cmd in singleArgumentCommands - { - caption: "\\#{cmd}{}" - snippet: "\\#{cmd}{$1}" - meta: "cmd" - } - doubleArgumentCommands = for cmd in doubleArgumentCommands - { - caption: "\\#{cmd}{}{}" - snippet: "\\#{cmd}{$1}{$2}" - meta: "cmd" - } - tripleArgumentCommands = for cmd in tripleArgumentCommands - { - caption: "\\#{cmd}{}{}{}" - snippet: "\\#{cmd}{$1}{$2}{$3}" - meta: "cmd" - } - special = for cmd in special - { - caption: "\\#{cmd}{}" - snippet: "\\#{cmd}{}" - meta: "cmd" - } - - staticCommands = [].concat( - noArgumentCommands, - singleArgumentCommands, - doubleArgumentCommands, - tripleArgumentCommands, - special - ) - - # packageCommandMappings = { - # amsmath: ['holyshititworks', 'mathematics'] - # natbib: ['somebibliographystuff'] - # } + commandSnippets = [] + for cmd, snippets of topHundred + for snippet in snippets + commandSnippets.push snippet class Parser constructor: (@doc, @prefix) -> @@ -136,10 +62,10 @@ define [ return realCommands # Ignore single letter commands since auto complete is moot then. - commandRegex: /\\([a-zA-Z][a-zA-Z]+)/ + commandRegex: /\\([a-zA-Z]{2,})/ nextCommand: () -> - i = @doc.search(@commandRegex) + i = @doc.search @commandRegex if i == -1 return false else @@ -179,14 +105,21 @@ define [ packages = @metadataManager.getAllPackages() packageCommands = [] for pkg in packages - if packageCommandMappings[pkg]? - for cmd in packageCommandMappings[pkg] - packageCommands.push { - caption: "\\#{cmd}" - snippet: "\\#{cmd}" - meta: "#{pkg}-cmd" - score: 60 - } + commands = packageCommandMappings[pkg] + if commands? + for command, snippets of commands + if command not in rawCommands + for snippet in snippets + packageCommands.push snippet + # for pkg in packages + # if packageCommandMappings[pkg]? + # for cmd in packageCommandMappings[pkg] + # packageCommands.push { + # caption: "\\#{cmd}" + # snippet: "\\#{cmd}" + # meta: "#{pkg}-cmd" + # score: 60 + # } doc = session.getValue() parser = new Parser(doc, prefix) @@ -212,7 +145,7 @@ define [ meta: "cmd" score: score } - completions = completions.concat staticCommands, packageCommands + completions = completions.concat commandSnippets, packageCommands callback null, completions diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee new file mode 100644 index 0000000000..9ed0cb289f --- /dev/null +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee @@ -0,0 +1 @@ +define -> {"inputenc": {"inputencoding": [{"caption": "\\inputencoding{}", "snippet": "\\inputencoding{$1}", "meta": "inputenc-cmd", "score": 0.0002447047447770061}]}, "graphicx": {"rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphicx-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphicx-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphicx-cmd", "score": 0.0047181502268010085}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "graphicx-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "graphicx-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "graphicx-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "graphicx-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "graphicx-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "graphicx-cmd", "score": 0.00530510025314411}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "graphicx-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "graphicx-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "graphicx-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "graphicx-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "graphicx-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "graphicx-cmd", "score": 0.017834153815870245}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "graphicx-cmd", "score": 0.00037306820619479756}]}, "amsmath": {"longleftrightarrow": [{"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "amsmath-cmd", "score": 0.0002851769278703356}], "bmod": [{"caption": "\\bmod", "snippet": "\\bmod", "meta": "amsmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "amsmath-cmd", "score": 0.002022594681005002}], "big": [{"caption": "\\big", "snippet": "\\big", "meta": "amsmath-cmd", "score": 0.056146864111818975}], "Ddot": [{"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "mathaccentV": [{"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "amsmath-cmd", "score": 6.216218551413489e-05}], "binom": [{"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "amsmath-cmd", "score": 0.013010882180364367}], "Breve": [{"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "bigg": [{"caption": "\\bigg", "snippet": "\\bigg", "meta": "amsmath-cmd", "score": 0.043270542864372256}], "frac": [{"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "amsmath-cmd", "score": 1.43498545644915}], "mspace": [{"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "amsmath-cmd", "score": 3.423236656565836e-05}], "Longleftrightarrow": [{"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "amsmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "amsmath-cmd", "score": 0.0004896780659212191}], "dotsc": [{"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "amsmath-cmd", "score": 0.0008555101484119994}], "intertext": [{"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "amsmath-cmd", "score": 0.0016148076375871775}], "bigoplus": [{"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "amsmath-cmd", "score": 0.0011508785476242003}], "hookleftarrow": [{"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "amsmath-cmd", "score": 0.0016498799924012809}], "leftroot": [{"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "amsmath-cmd", "score": 6.625561928497235e-05}], "dbinom": [{"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006800272303210672}], "Check": [{"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "tbinom": [{"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "amsmath-cmd", "score": 1.3908704929884828e-05}], "hookrightarrow": [{"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "amsmath-cmd", "score": 0.0015607282046545064}], "pmod": [{"caption": "\\pmod", "snippet": "\\pmod", "meta": "amsmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "amsmath-cmd", "score": 0.0011773327219377148}], "Dot": [{"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "hdotsfor": [{"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "amsmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "amsmath-cmd", "score": 0.00024247684499275043}], "bigvee": [{"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "amsmath-cmd", "score": 0.0011677288242806726}], "allowdisplaybreaks": [{"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "amsmath-cmd", "score": 0.005931777024772073}], "doteq": [{"caption": "\\doteq", "snippet": "\\doteq", "meta": "amsmath-cmd", "score": 3.164631070474435e-05}], "ldots": [{"caption": "\\ldots", "snippet": "\\ldots", "meta": "amsmath-cmd", "score": 0.115046852322159}], "bigotimes": [{"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "amsmath-cmd", "score": 0.000984722260624791}], "xrightarrow": [{"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "amsmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "amsmath-cmd", "score": 0.004163642482777231}], "mod": [{"caption": "\\mod", "snippet": "\\mod", "meta": "amsmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "amsmath-cmd", "score": 0.0015181439193121889}], "Acute": [{"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "Bar": [{"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "pod": [{"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "amsmath-cmd", "score": 2.7817409859769657e-05}], "Grave": [{"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "label": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "amsmath-cmd", "score": 1.9020216646194645}], "dfrac": [{"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.05397539787429476}], "overline": [{"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "amsmath-cmd", "score": 0.11280487530505384}], "overset": [{"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "amsmath-cmd", "score": 0.007644183804631175}], "colon": [{"caption": "\\colon", "snippet": "\\colon", "meta": "amsmath-cmd", "score": 0.005300291684408929}], "prod": [{"caption": "\\prod", "snippet": "\\prod", "meta": "amsmath-cmd", "score": 0.025498838855134164}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "amsmath-cmd", "score": 0.009278344180101056}], "implies": [{"caption": "\\implies", "snippet": "\\implies", "meta": "amsmath-cmd", "score": 0.02182798748382703}], "numberwithin": [{"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006963564970792657}], "Hat": [{"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "iff": [{"caption": "\\iff", "snippet": "\\iff", "meta": "amsmath-cmd", "score": 0.004209937150980285}], "nonumber": [{"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "amsmath-cmd", "score": 0.05286168328323948}], "sideset": [{"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "dots": [{"caption": "\\dots", "snippet": "\\dots", "meta": "amsmath-cmd", "score": 0.0847414497955395}], "xleftarrow": [{"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "amsmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "amsmath-cmd", "score": 3.5779964196240445e-05}], "sum": [{"caption": "\\sum", "snippet": "\\sum", "meta": "amsmath-cmd", "score": 0.4273070408257405}], "smash": [{"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "amsmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "amsmath-cmd", "score": 0.008197171096663127}], "over": [{"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "amsmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "amsmath-cmd", "score": 0.0054372322008878786}], "cfrac": [{"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006765684097139381}], "Longleftarrow": [{"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "amsmath-cmd", "score": 8.477207854183949e-05}], "Bigg": [{"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "amsmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "amsmath-cmd", "score": 0.015507614799858266}], "idotsint": [{"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "amsmath-cmd", "score": 1.3908704929884828e-05}], "Tilde": [{"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "amsmath-cmd", "score": 7.874446783586035e-05}], "Big": [{"caption": "\\Big", "snippet": "\\Big", "meta": "amsmath-cmd", "score": 0.05036999011667452}], "underset": [{"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "amsmath-cmd", "score": 0.012799893214578391}], "ignorespacesafterend": [{"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "amsmath-cmd", "score": 0.0010893680553454854}], "genfrac": [{"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "amsmath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "amsmath-cmd", "score": 0.004820143328295316}], "And": [{"caption": "\\And", "snippet": "\\And", "meta": "amsmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "amsmath-cmd", "score": 0.0011582952152188854}], "longrightarrow": [{"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "amsmath-cmd", "score": 0.013399422292458848}], "bigsqcup": [{"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "amsmath-cmd", "score": 0.0003468284144579442}], "longleftarrow": [{"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "amsmath-cmd", "score": 0.0011096532692473691}], "mapsto": [{"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "amsmath-cmd", "score": 0.006473769486518971}], "coprod": [{"caption": "\\coprod", "snippet": "\\coprod", "meta": "amsmath-cmd", "score": 0.00011383372700282614}], "int": [{"caption": "\\int", "snippet": "\\int", "meta": "amsmath-cmd", "score": 0.1195126537065476}], "theequation": [{"caption": "\\theequation", "snippet": "\\theequation", "meta": "amsmath-cmd", "score": 0.002995924112493351}], "notag": [{"caption": "\\notag", "snippet": "\\notag", "meta": "amsmath-cmd", "score": 0.00322520920930312}], "Longrightarrow": [{"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "amsmath-cmd", "score": 0.002459139437356601}], "eqref": [{"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "amsmath-cmd", "score": 0.06344722698381076}], "arraystretch": [{"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "amsmath-cmd", "score": 0.022232443201007313}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "amsmath-cmd", "score": 0.022232443201007313}], "impliedby": [{"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "amsmath-cmd", "score": 2.3482915591834053e-05}], "Vec": [{"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}], "longmapsto": [{"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "amsmath-cmd", "score": 0.0017755897148012264}], "substack": [{"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "amsmath-cmd", "score": 0.0037564126836193133}], "uproot": [{"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "amsmath-cmd", "score": 6.625561928497235e-05}], "boxed": [{"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "amsmath-cmd", "score": 0.0035536135737312827}], "bigwedge": [{"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "amsmath-cmd", "score": 0.000347742918592393}], "atop": [{"caption": "\\atop", "snippet": "\\atop", "meta": "amsmath-cmd", "score": 0.0006518541515279979}], "bigcap": [{"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "amsmath-cmd", "score": 0.005709261168797874}], "bigcup": [{"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "amsmath-cmd", "score": 0.0059092660111195894}], "oint": [{"caption": "\\oint", "snippet": "\\oint", "meta": "amsmath-cmd", "score": 0.0028650540724050534}], "AmS": [{"caption": "\\AmS", "snippet": "\\AmS", "meta": "amsmath-cmd", "score": 0.00047859486202980376}], "dotsi": [{"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "amsmath-cmd", "score": 2.7817409859769657e-05}], "tfrac": [{"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.0005923542426657187}], "varprojlim": [{"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "amsmath-cmd", "score": 0.0004286136584068833}], "max": [{"caption": "\\max", "snippet": "\\max", "meta": "amsmath-cmd", "score": 0.0412417160860681}], "varlimsup": [{"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "amsmath-cmd", "score": 6.204977642542802e-05}], "Pr": [{"caption": "\\Pr", "snippet": "\\Pr", "meta": "amsmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "amsmath-cmd", "score": 0.010227440663206161}], "arctan": [{"caption": "\\arctan", "snippet": "\\arctan", "meta": "amsmath-cmd", "score": 0.0011971697553682045}], "sin": [{"caption": "\\sin", "snippet": "\\sin", "meta": "amsmath-cmd", "score": 0.040462704205325724}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "amsmath-cmd", "score": 0.040462704205325724}], "arcsin": [{"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "amsmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "amsmath-cmd", "score": 0.0007754886988089101}], "ln": [{"caption": "\\ln", "snippet": "\\ln", "meta": "amsmath-cmd", "score": 0.025399588510250454}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "amsmath-cmd", "score": 0.025399588510250454}], "log": [{"caption": "\\log", "snippet": "\\log", "meta": "amsmath-cmd", "score": 0.048131780413380156}], "min": [{"caption": "\\min", "snippet": "\\min", "meta": "amsmath-cmd", "score": 0.03059279766697554}], "arg": [{"caption": "\\arg", "snippet": "\\arg", "meta": "amsmath-cmd", "score": 0.007190995792600074}], "coth": [{"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "amsmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "amsmath-cmd", "score": 0.00025939638266884963}], "hom": [{"caption": "\\hom", "snippet": "\\hom", "meta": "amsmath-cmd", "score": 8.180643329881783e-05}], "gcd": [{"caption": "\\gcd", "snippet": "\\gcd", "meta": "amsmath-cmd", "score": 0.002254008371792865}], "varliminf": [{"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "amsmath-cmd", "score": 6.204977642542802e-05}], "varinjlim": [{"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "amsmath-cmd", "score": 0.000361814283649031}], "DeclareMathOperator": [{"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "amsmath-cmd", "score": 0.029652646406088844}], "tan": [{"caption": "\\tan", "snippet": "\\tan", "meta": "amsmath-cmd", "score": 0.006176392560798349}], "dim": [{"caption": "\\dim", "snippet": "\\dim", "meta": "amsmath-cmd", "score": 0.0038210003967178293}], "exp": [{"caption": "\\exp", "snippet": "\\exp", "meta": "amsmath-cmd", "score": 0.024042569531889824}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "amsmath-cmd", "score": 0.024042569531889824}], "cot": [{"caption": "\\cot", "snippet": "\\cot", "meta": "amsmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "amsmath-cmd", "score": 0.0003640644365701238}], "sup": [{"caption": "\\sup", "snippet": "\\sup", "meta": "amsmath-cmd", "score": 0.00937183417998101}], "ker": [{"caption": "\\ker", "snippet": "\\ker", "meta": "amsmath-cmd", "score": 0.002475379242338094}], "deg": [{"caption": "\\deg", "snippet": "\\deg", "meta": "amsmath-cmd", "score": 0.005542465148816408}], "csc": [{"caption": "\\csc", "snippet": "\\csc", "meta": "amsmath-cmd", "score": 0.00013963711107573638}], "limsup": [{"caption": "\\limsup", "snippet": "\\limsup", "meta": "amsmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "amsmath-cmd", "score": 0.002354950225950599}], "sinh": [{"caption": "\\sinh", "snippet": "\\sinh", "meta": "amsmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "amsmath-cmd", "score": 0.0006435164702005918}], "cosh": [{"caption": "\\cosh", "snippet": "\\cosh", "meta": "amsmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "amsmath-cmd", "score": 0.0008896391580266903}], "arccos": [{"caption": "\\arccos", "snippet": "\\arccos", "meta": "amsmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "amsmath-cmd", "score": 0.001781687642431819}], "lim": [{"caption": "\\lim", "snippet": "\\lim", "meta": "amsmath-cmd", "score": 0.052875658811662965}], "inf": [{"caption": "\\inf", "snippet": "\\inf", "meta": "amsmath-cmd", "score": 0.00340470256994063}], "operatorname": [{"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "amsmath-cmd", "score": 0.021827708582623066}], "operatornamewithlimits": [{"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "amsmath-cmd", "score": 0.0022415507993352067}], "det": [{"caption": "\\det", "snippet": "\\det", "meta": "amsmath-cmd", "score": 0.005640718203101287}], "tanh": [{"caption": "\\tanh", "snippet": "\\tanh", "meta": "amsmath-cmd", "score": 0.0021392350622877272}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "amsmath-cmd", "score": 0.0021392350622877272}], "sec": [{"caption": "\\sec", "snippet": "\\sec", "meta": "amsmath-cmd", "score": 0.0005912636157903734}], "liminf": [{"caption": "\\liminf", "snippet": "\\liminf", "meta": "amsmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "amsmath-cmd", "score": 0.0015513861600956144}], "cos": [{"caption": "\\cos", "snippet": "\\cos", "meta": "amsmath-cmd", "score": 0.05037007311838572}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "amsmath-cmd", "score": 0.05037007311838572}], "text": [{"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "amsmath-cmd", "score": 0.36085779561541087}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "amsmath-cmd", "score": 0.010241823778997489}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "amsmath-cmd", "score": 0.008565354665444157}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "amsmath-cmd", "score": 0.0030745841706804776}], "boldsymbol": [{"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "amsmath-cmd", "score": 0.1816956061674236}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "amsmath-cmd", "score": 0.1816956061674236}], "pmb": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "amsmath-cmd", "score": 0.019171182556792562}], "frenchspacing": [{"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsmath-cmd", "score": 0.0063276692758974925}]}, "geometry": {"restoregeometry": [{"caption": "\\restoregeometry", "snippet": "\\restoregeometry", "meta": "geometry-cmd", "score": 0.0007545754795895202}], "loadgeometry": [{"caption": "\\loadgeometry{}", "snippet": "\\loadgeometry{$1}", "meta": "geometry-cmd", "score": 6.461638865465447e-05}], "savegeometry": [{"caption": "\\savegeometry{}", "snippet": "\\savegeometry{$1}", "meta": "geometry-cmd", "score": 6.461638865465447e-05}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "geometry-cmd", "score": 0.008565354665444157}], "geometry": [{"caption": "\\geometry{}", "snippet": "\\geometry{$1}", "meta": "geometry-cmd", "score": 0.046218420429973615}], "newgeometry": [{"caption": "\\newgeometry{}", "snippet": "\\newgeometry{$1}", "meta": "geometry-cmd", "score": 0.002597693016139091}], "RequireXeTeX": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "geometry-cmd", "score": 0.00021116765384691477}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "geometry-cmd", "score": 0.002958865219480927}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "geometry-cmd", "score": 0.00037306820619479756}]}, "amssymb": {"checkmark": [{"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "amssymb-cmd", "score": 0.025060530944368123}], "frak": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "amssymb-cmd", "score": 0.0017966000518546787}], "bold": [{"caption": "\\bold", "snippet": "\\bold", "meta": "amssymb-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "amssymb-cmd", "score": 0.0014358547624941567}], "Bbb": [{"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "amssymb-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "amssymb-cmd", "score": 0.0006671850995492977}]}, "hyperref": {"FancyVerbLineautorefname": [{"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "subparagraphautorefname": [{"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "hyperref-cmd", "score": 0.0005446476945175932}], "paragraphautorefname": [{"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "hyperref-cmd", "score": 0.0005446476945175932}], "hyperref": [{"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "hyperref-cmd", "score": 0.004515152477030062}], "equationautorefname": [{"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "hyperref-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00018777198999871106}], "MP": [{"caption": "\\MP", "snippet": "\\MP", "meta": "hyperref-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "hyperref-cmd", "score": 0.00018344383742255004}], "nameref": [{"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "hyperref-cmd", "score": 0.009472569279662113}], "halign": [{"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "hyperref-cmd", "score": 0.00017906650306643613}], "ref": [{"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "hyperref-cmd", "score": 1.4407793083320886}], "arabic": [{"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "hyperref-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "hyperref-cmd", "score": 0.02445837629741638}], "newlabel": [{"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00029737672328168955}], "pdfbookmark": [{"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "hyperref-cmd", "score": 0.006492248863367502}], "texorpdfstring": [{"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "hyperref-cmd", "score": 0.0073781967296121}], "autoref": [{"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "hyperref-cmd", "score": 0.03741172773691362}], "protect": [{"caption": "\\protect", "snippet": "\\protect", "meta": "hyperref-cmd", "score": 0.020062059118610417}], "theoremautorefname": [{"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "end": [{"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "hyperref-cmd", "score": 7.849700347260315}], "footnoteautorefname": [{"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "hypersetup": [{"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "hyperref-cmd", "score": 0.06967305353002176}], "addcontentsline": [{"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "hyperref-cmd", "score": 0.0750300331236939}], "textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "hyperref-cmd", "score": 0.20852115286477566}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hyperref-cmd", "score": 0.021170869458413965}], "Alph": [{"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "hyperref-cmd", "score": 0.002232314708095657}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "hyperref-cmd", "score": 0.002232314708095657}], "chapterautorefname": [{"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "title": [{"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "hyperref-cmd", "score": 0.9198856343434283}], "itemautorefname": [{"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "roman": [{"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "hyperref-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "hyperref-cmd", "score": 0.005553384455935491}], "appendix": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "hyperref-cmd", "score": 0.046602473549440505}], "footref": [{"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "hyperref-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "hyperref-cmd", "score": 0.0003680857021151614}], "newline": [{"caption": "\\newline", "snippet": "\\newline", "meta": "hyperref-cmd", "score": 0.3311721696201715}], "figureautorefname": [{"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "hyperref-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00014582556188448738}], "hyperlink": [{"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00978652043902115}], "subsubsectionautorefname": [{"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "hyperref-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0012064581899162352}], "LaTeXe": [{"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "hyperref-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "hyperref-cmd", "score": 0.007928096378157487}], "citeN": [{"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "hyperref-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "hyperref-cmd", "score": 0.0018503938529945614}], "author": [{"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "hyperref-cmd", "score": 0.8969538515275781}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "hyperref-cmd", "score": 0.8969538515275781}], "textunderscore": [{"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "hyperref-cmd", "score": 0.001509072212764015}], "begin": [{"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "hyperref-cmd", "score": 7.851456190060047}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "hyperref-cmd", "score": 7.851456190060047}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "hyperref-cmd", "score": 7.851456190060047}], "TeX": [{"caption": "\\TeX", "snippet": "\\TeX", "meta": "hyperref-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "hyperref-cmd", "score": 0.02873756018238537}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}], "Itemautorefname": [{"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "hyperref-cmd", "score": 6.006262128895586e-05}], "alph": [{"caption": "\\alph", "snippet": "\\alph", "meta": "hyperref-cmd", "score": 0.010351432374282727}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "hyperref-cmd", "score": 0.010351432374282727}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "hyperref-cmd", "score": 1.2601205994540519}], "pageref": [{"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "hyperref-cmd", "score": 0.019788865471151957}], "MakeUppercase": [{"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "hyperref-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "hyperref-cmd", "score": 0.006776001543888959}], "tableautorefname": [{"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "hyperref-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00012704528567339081}], "partautorefname": [{"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}], "url": [{"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "hyperref-cmd", "score": 0.13546049224959583}], "maketitle": [{"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "hyperref-cmd", "score": 0.7504150683640368}], "appendixautorefname": [{"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "hyperref-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "hyperref-cmd", "score": 7.950698053641679e-05}], "MakeLowercase": [{"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "hyperref-cmd", "score": 0.017289599800633146}], "item": [{"caption": "\\item", "snippet": "\\item", "meta": "hyperref-cmd", "score": 3.8010438111017444}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "hyperref-cmd", "score": 3.8010438111017444}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "hyperref-cmd", "score": 0.001042697111754002}], "nolinkurl": [{"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "hyperref-cmd", "score": 0.0004995635515943437}], "sectionautorefname": [{"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "hyperref-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0019832324299155183}], "phantomsection": [{"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "hyperref-cmd", "score": 0.0174633138331273}], "subsectionautorefname": [{"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "hyperref-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0012546605780895737}], "refstepcounter": [{"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "hyperref-cmd", "score": 0.002140559856649122}], "hypertarget": [{"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "hyperref-cmd", "score": 0.009652820108904094}], "Roman": [{"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "hyperref-cmd", "score": 0.0038703587462843594}], "LaTeX": [{"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "hyperref-cmd", "score": 0.23340887594065388}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "hyperref-cmd", "score": 0.23340887594065388}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "hyperref-cmd", "score": 0.009278344180101056}], "href": [{"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "hyperref-cmd", "score": 0.27111130260612365}], "numberwithin": [{"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "hyperref-cmd", "score": 0.006963564970792657}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00037306820619479756}], "RequireXeTeX": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "hyperref-cmd", "score": 0.00021116765384691477}], "UrlBigBreaks": [{"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}], "urlstyle": [{"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "hyperref-cmd", "score": 0.010515056688180681}], "UrlOrds": [{"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "hyperref-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "hyperref-cmd", "score": 0.0006882563723629154}], "UrlBreaks": [{"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "hyperref-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "hyperref-cmd", "score": 0.001030592515645366}], "UrlNoBreaks": [{"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}], "UrlFont": [{"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "hyperref-cmd", "score": 0.0032990580087398644}], "Url": [{"caption": "\\Url", "snippet": "\\Url", "meta": "hyperref-cmd", "score": 0.0002854206807593436}], "UrlSpecials": [{"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}], "urldef": [{"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "hyperref-cmd", "score": 0.008041789461944983}], "AtBeginShipoutNext": [{"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "hyperref-cmd", "score": 0.0005277905480209891}], "AtBeginShipout": [{"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "hyperref-cmd", "score": 0.00047530324346933345}], "check": [{"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "hyperref-cmd", "score": 0.0058342578961340175}], "space": [{"caption": "\\space", "snippet": "\\space", "meta": "hyperref-cmd", "score": 0.023010734949040847}]}, "babel": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "babel-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "babel-cmd", "score": 0.021170869458413965}]}, "color": {"textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "color-cmd", "score": 0.20852115286477566}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "color-cmd", "score": 0.00926923425734719}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "color-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "color-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "color-cmd", "score": 0.2864757606289432}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "color-cmd", "score": 0.1690663439295532}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "color-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "color-cmd", "score": 0.0008147200475678891}]}, "xcolor": {"textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "xcolor-cmd", "score": 0.20852115286477566}], "definecolors": [{"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "xcolor-cmd", "score": 0.0003209840085766927}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xcolor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xcolor-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xcolor-cmd", "score": 0.00530510025314411}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "xcolor-cmd", "score": 0.008565354665444157}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.00926923425734719}], "colorlet": [{"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "xcolor-cmd", "score": 0.03654388342026623}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "xcolor-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xcolor-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xcolor-cmd", "score": 0.2864757606289432}], "rowcolors": [{"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.0014120076489723356}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.1690663439295532}], "selectcolormodel": [{"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "xcolor-cmd", "score": 0.000264339771769041}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "xcolor-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "xcolor-cmd", "score": 0.0008147200475678891}]}, "natbib": {"aftergroup": [{"caption": "\\aftergroup", "snippet": "\\aftergroup", "meta": "natbib-cmd", "score": 0.002020423627422133}], "bibname": [{"caption": "\\bibname", "snippet": "\\bibname", "meta": "natbib-cmd", "score": 0.007599529252128519}, {"caption": "\\bibname{}", "snippet": "\\bibname{$1}", "meta": "natbib-cmd", "score": 0.007599529252128519}], "citepalias": [{"caption": "\\citepalias{}", "snippet": "\\citepalias{$1}", "meta": "natbib-cmd", "score": 0.00032712684909035603}, {"caption": "\\citepalias[][]{}", "snippet": "\\citepalias[$1][$2]{$3}", "meta": "natbib-cmd", "score": 0.00032712684909035603}], "citep": [{"caption": "\\citep{}", "snippet": "\\citep{$1}", "meta": "natbib-cmd", "score": 0.29431067915471926}], "citealp": [{"caption": "\\citealp{}", "snippet": "\\citealp{$1}", "meta": "natbib-cmd", "score": 0.005275912376595364}, {"caption": "\\citealp[]{}", "snippet": "\\citealp[$1]{$2}", "meta": "natbib-cmd", "score": 0.005275912376595364}], "bibpunct": [{"caption": "\\bibpunct", "snippet": "\\bibpunct", "meta": "natbib-cmd", "score": 0.001148574749873469}, {"caption": "\\bibpunct{}{}{}{}{}{}", "snippet": "\\bibpunct{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "natbib-cmd", "score": 0.001148574749873469}, {"caption": "\\bibpunct[]{}{}{}{}{}{}", "snippet": "\\bibpunct[$1]{$2}{$3}{$4}{$5}{$6}{$7}", "meta": "natbib-cmd", "score": 0.001148574749873469}], "citealt": [{"caption": "\\citealt{}", "snippet": "\\citealt{$1}", "meta": "natbib-cmd", "score": 0.007211474525145977}], "defcitealias": [{"caption": "\\defcitealias{}{}", "snippet": "\\defcitealias{$1}{$2}", "meta": "natbib-cmd", "score": 0.00042021825647418025}], "bibnumfmt": [{"caption": "\\bibnumfmt", "snippet": "\\bibnumfmt", "meta": "natbib-cmd", "score": 0.000353353600267394}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "natbib-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "natbib-cmd", "score": 0.021170869458413965}], "nocite": [{"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "natbib-cmd", "score": 0.04990693820960752}], "newblock": [{"caption": "\\newblock", "snippet": "\\newblock", "meta": "natbib-cmd", "score": 0.03684301726876973}, {"caption": "\\newblock{}", "snippet": "\\newblock{$1}", "meta": "natbib-cmd", "score": 0.03684301726876973}], "textsuperscript": [{"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "natbib-cmd", "score": 0.05216393882408519}], "citetalias": [{"caption": "\\citetalias{}", "snippet": "\\citetalias{$1}", "meta": "natbib-cmd", "score": 0.001419571355756266}], "bibitem": [{"caption": "\\bibitem{}", "snippet": "\\bibitem{$1}", "meta": "natbib-cmd", "score": 0.36888678386876994}, {"caption": "\\bibitem[]{}", "snippet": "\\bibitem[$1]{$2}", "meta": "natbib-cmd", "score": 0.36888678386876994}], "setcitestyle": [{"caption": "\\setcitestyle{}", "snippet": "\\setcitestyle{$1}", "meta": "natbib-cmd", "score": 0.0015840652870152204}], "refname": [{"caption": "\\refname", "snippet": "\\refname", "meta": "natbib-cmd", "score": 0.006489294124674553}, {"caption": "\\refname{}", "snippet": "\\refname{$1}", "meta": "natbib-cmd", "score": 0.006489294124674553}], "citeyearpar": [{"caption": "\\citeyearpar{}", "snippet": "\\citeyearpar{$1}", "meta": "natbib-cmd", "score": 0.001877888310324327}], "MakeUppercase": [{"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "natbib-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "natbib-cmd", "score": 0.006776001543888959}], "makeindex": [{"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "natbib-cmd", "score": 0.010304996748556729}], "citeauthor": [{"caption": "\\citeauthor{}", "snippet": "\\citeauthor{$1}", "meta": "natbib-cmd", "score": 0.01359248786373484}], "cite": [{"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "natbib-cmd", "score": 2.343559749970739}], "citeyear": [{"caption": "\\citeyear{}", "snippet": "\\citeyear{$1}", "meta": "natbib-cmd", "score": 0.01091041305836494}], "bibsection": [{"caption": "\\bibsection", "snippet": "\\bibsection", "meta": "natbib-cmd", "score": 0.00038872734530908233}, {"caption": "\\bibsection{}", "snippet": "\\bibsection{$1}", "meta": "natbib-cmd", "score": 0.00038872734530908233}], "citet": [{"caption": "\\citet{}", "snippet": "\\citet{$1}", "meta": "natbib-cmd", "score": 0.09049312446295495}]}, "url": {"UrlBigBreaks": [{"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "url-cmd", "score": 3.7048287721105874e-05}], "urlstyle": [{"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "url-cmd", "score": 0.010515056688180681}], "UrlOrds": [{"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "url-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "url-cmd", "score": 0.0006882563723629154}], "UrlBreaks": [{"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "url-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "url-cmd", "score": 0.001030592515645366}], "UrlNoBreaks": [{"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "url-cmd", "score": 3.7048287721105874e-05}], "UrlFont": [{"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "url-cmd", "score": 0.0032990580087398644}], "Url": [{"caption": "\\Url", "snippet": "\\Url", "meta": "url-cmd", "score": 0.0002854206807593436}], "UrlSpecials": [{"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "url-cmd", "score": 3.7048287721105874e-05}], "urldef": [{"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "url-cmd", "score": 0.008041789461944983}]}, "fontenc": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fontenc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fontenc-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fontenc-cmd", "score": 0.00530510025314411}]}, "fancyhdr": {"fancyfootoffset": [{"caption": "\\fancyfootoffset[]{}", "snippet": "\\fancyfootoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.0015373246231684555}, {"caption": "\\fancyfootoffset{}", "snippet": "\\fancyfootoffset{$1}", "meta": "fancyhdr-cmd", "score": 0.0015373246231684555}], "fancyfoot": [{"caption": "\\fancyfoot[]{}", "snippet": "\\fancyfoot[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.02497345410931536}, {"caption": "\\fancyfoot{}", "snippet": "\\fancyfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.02497345410931536}], "nouppercase": [{"caption": "\\nouppercase{}", "snippet": "\\nouppercase{$1}", "meta": "fancyhdr-cmd", "score": 0.0064162772623343935}, {"caption": "\\nouppercase", "snippet": "\\nouppercase", "meta": "fancyhdr-cmd", "score": 0.0064162772623343935}], "subsectionmark": [{"caption": "\\subsectionmark", "snippet": "\\subsectionmark", "meta": "fancyhdr-cmd", "score": 3.1153423008593836e-05}], "footrule": [{"caption": "\\footrule", "snippet": "\\footrule", "meta": "fancyhdr-cmd", "score": 0.0010032754348913366}, {"caption": "\\footrule{}", "snippet": "\\footrule{$1}", "meta": "fancyhdr-cmd", "score": 0.0010032754348913366}], "iffloatpage": [{"caption": "\\iffloatpage{}{}", "snippet": "\\iffloatpage{$1}{$2}", "meta": "fancyhdr-cmd", "score": 6.606286310833368e-05}], "plainheadrulewidth": [{"caption": "\\plainheadrulewidth", "snippet": "\\plainheadrulewidth", "meta": "fancyhdr-cmd", "score": 6.2350576842596716e-06}], "lfoot": [{"caption": "\\lfoot{}", "snippet": "\\lfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.00789399846642229}], "headrulewidth": [{"caption": "\\headrulewidth", "snippet": "\\headrulewidth", "meta": "fancyhdr-cmd", "score": 0.022681324448733383}], "headrule": [{"caption": "\\headrule", "snippet": "\\headrule", "meta": "fancyhdr-cmd", "score": 0.0008327432627715623}, {"caption": "\\headrule{}", "snippet": "\\headrule{$1}", "meta": "fancyhdr-cmd", "score": 0.0008327432627715623}], "fancyheadoffset": [{"caption": "\\fancyheadoffset[]{}", "snippet": "\\fancyheadoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.0016786568695309166}, {"caption": "\\fancyheadoffset{}", "snippet": "\\fancyheadoffset{$1}", "meta": "fancyhdr-cmd", "score": 0.0016786568695309166}], "footruleskip": [{"caption": "\\footruleskip", "snippet": "\\footruleskip", "meta": "fancyhdr-cmd", "score": 0.000830117957327721}], "chaptermark": [{"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "fancyhdr-cmd", "score": 0.00592446512006174}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "fancyhdr-cmd", "score": 0.00592446512006174}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fancyhdr-cmd", "score": 0.00530510025314411}], "cfoot": [{"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.013411641301057813}], "footrulewidth": [{"caption": "\\footrulewidth", "snippet": "\\footrulewidth", "meta": "fancyhdr-cmd", "score": 0.011424740897486949}], "rhead": [{"caption": "\\rhead{}", "snippet": "\\rhead{$1}", "meta": "fancyhdr-cmd", "score": 0.022782817416731292}], "sectionmark": [{"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "fancyhdr-cmd", "score": 0.005008938879210868}], "MakeUppercase": [{"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "fancyhdr-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "fancyhdr-cmd", "score": 0.006776001543888959}], "rfoot": [{"caption": "\\rfoot{}", "snippet": "\\rfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.013393817825547868}], "fancyhf": [{"caption": "\\fancyhf{}", "snippet": "\\fancyhf{$1}", "meta": "fancyhdr-cmd", "score": 0.023146024620619026}], "fancyhead": [{"caption": "\\fancyhead[]{}", "snippet": "\\fancyhead[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.0391009582554946}, {"caption": "\\fancyhead{}", "snippet": "\\fancyhead{$1}", "meta": "fancyhdr-cmd", "score": 0.0391009582554946}], "chead": [{"caption": "\\chead{}", "snippet": "\\chead{$1}", "meta": "fancyhdr-cmd", "score": 0.00755042164734884}], "fancypagestyle": [{"caption": "\\fancypagestyle{}{}", "snippet": "\\fancypagestyle{$1}{$2}", "meta": "fancyhdr-cmd", "score": 0.009430864686313031}], "baselinestretch": [{"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "fancyhdr-cmd", "score": 0.03225161333751885}], "lhead": [{"caption": "\\lhead{}", "snippet": "\\lhead{$1}", "meta": "fancyhdr-cmd", "score": 0.05268978171228714}], "fancyhfoffset": [{"caption": "\\fancyhfoffset[]{}", "snippet": "\\fancyhfoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 3.741978601121172e-05}], "fancyplain": [{"caption": "\\fancyplain{}{}", "snippet": "\\fancyplain{$1}{$2}", "meta": "fancyhdr-cmd", "score": 0.007402339896386138}]}, "tikz": {"setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-cmd", "score": 0.0047181502268010085}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.017834153815870245}], "textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-cmd", "score": 0.20852115286477566}], "definecolors": [{"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-cmd", "score": 0.0003209840085766927}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.00926923425734719}], "colorlet": [{"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-cmd", "score": 0.03654388342026623}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-cmd", "score": 0.2864757606289432}], "rowcolors": [{"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.0014120076489723356}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.1690663439295532}], "selectcolormodel": [{"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-cmd", "score": 0.000264339771769041}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-cmd", "score": 0.0008147200475678891}]}, "booktabs": {"cmidrule": [{"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "booktabs-cmd", "score": 0.018934417570887714}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "booktabs-cmd", "score": 0.018934417570887714}], "specialrule": [{"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "booktabs-cmd", "score": 0.004974385202605165}], "midrule": [{"caption": "\\midrule", "snippet": "\\midrule", "meta": "booktabs-cmd", "score": 0.07097039256660408}], "addlinespace": [{"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "booktabs-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "booktabs-cmd", "score": 0.005865460617491447}], "toprule": [{"caption": "\\toprule", "snippet": "\\toprule", "meta": "booktabs-cmd", "score": 0.059846459274956104}], "bottomrule": [{"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "booktabs-cmd", "score": 0.04532231771394982}]}, "amsfonts": {"checkmark": [{"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "amsfonts-cmd", "score": 0.025060530944368123}], "frak": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "amsfonts-cmd", "score": 0.0017966000518546787}], "bold": [{"caption": "\\bold", "snippet": "\\bold", "meta": "amsfonts-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "amsfonts-cmd", "score": 0.0014358547624941567}], "Bbb": [{"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "amsfonts-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "amsfonts-cmd", "score": 0.0006671850995492977}]}, "float": {"listof": [{"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "float-cmd", "score": 0.0009837365348002915}], "floatname": [{"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "float-cmd", "score": 0.0011934321931750752}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "float-cmd", "score": 1.2601205994540519}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "float-cmd", "score": 0.008565354665444157}], "floatplacement": [{"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "float-cmd", "score": 0.0005815474978918903}], "newfloat": [{"caption": "\\newfloat{}{}{}", "snippet": "\\newfloat{$1}{$2}{$3}", "meta": "float-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat", "snippet": "\\newfloat", "meta": "float-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat{}", "snippet": "\\newfloat{$1}", "meta": "float-cmd", "score": 0.0012745874472536625}], "restylefloat": [{"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "float-cmd", "score": 0.0008866338267686714}], "floatstyle": [{"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "float-cmd", "score": 0.0015470917047414941}]}, "amsthm": {"theoremstyle": [{"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "amsthm-cmd", "score": 0.025334011840830173}], "newtheoremstyle": [{"caption": "\\newtheoremstyle{}", "snippet": "\\newtheoremstyle{$1}", "meta": "amsthm-cmd", "score": 0.004259886909451789}, {"caption": "\\newtheoremstyle{}{}{}", "snippet": "\\newtheoremstyle{$1}{$2}{$3}", "meta": "amsthm-cmd", "score": 0.004259886909451789}, {"caption": "\\newtheoremstyle{}{}{}{}", "snippet": "\\newtheoremstyle{$1}{$2}{$3}{$4}", "meta": "amsthm-cmd", "score": 0.004259886909451789}], "popQED": [{"caption": "\\popQED", "snippet": "\\popQED", "meta": "amsthm-cmd", "score": 9.673490669434574e-05}], "newtheorem": [{"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "amsthm-cmd", "score": 0.21568974015080916}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "amsthm-cmd", "score": 0.21568974015080916}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "amsthm-cmd", "score": 0.21568974015080916}], "proofname": [{"caption": "\\proofname", "snippet": "\\proofname", "meta": "amsthm-cmd", "score": 0.00021208362094925234}], "qedhere": [{"caption": "\\qedhere", "snippet": "\\qedhere", "meta": "amsthm-cmd", "score": 0.0001608548097938035}], "swapnumbers": [{"caption": "\\swapnumbers", "snippet": "\\swapnumbers", "meta": "amsthm-cmd", "score": 0.0002908376412221364}], "frenchspacing": [{"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsthm-cmd", "score": 0.0063276692758974925}], "qed": [{"caption": "\\qed", "snippet": "\\qed", "meta": "amsthm-cmd", "score": 0.0014240748825867814}, {"caption": "\\qed{}", "snippet": "\\qed{$1}", "meta": "amsthm-cmd", "score": 0.0014240748825867814}], "qedsymbol": [{"caption": "\\qedsymbol", "snippet": "\\qedsymbol", "meta": "amsthm-cmd", "score": 0.0022671784428571723}, {"caption": "\\qedsymbol{}", "snippet": "\\qedsymbol{$1}", "meta": "amsthm-cmd", "score": 0.0022671784428571723}], "pushQED": [{"caption": "\\pushQED{}", "snippet": "\\pushQED{$1}", "meta": "amsthm-cmd", "score": 0.00019346981338869148}]}, "caption": {"ContinuedFloat": [{"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "caption-cmd", "score": 5.806935368083486e-05}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "caption-cmd", "score": 0.00530510025314411}], "noindent": [{"caption": "\\noindent", "snippet": "\\noindent", "meta": "caption-cmd", "score": 0.423657318933529}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "caption-cmd", "score": 1.2601205994540519}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "caption-cmd", "score": 0.008565354665444157}], "chapter": [{"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "caption-cmd", "score": 0.42208896442237664}], "appendix": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "caption-cmd", "score": 0.046602473549440505}], "captionsetup": [{"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "caption-cmd", "score": 0.029007777361805803}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "caption-cmd", "score": 0.029007777361805803}], "captionof": [{"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "caption-cmd", "score": 0.018348594199161503}], "label": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "caption-cmd", "score": 1.9020216646194645}], "hspace": [{"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "caption-cmd", "score": 0.3147193866846124}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "caption-cmd", "score": 0.0030745841706804776}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "caption-cmd", "score": 0.001042697111754002}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "caption-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "caption-cmd", "score": 0.021170869458413965}], "DeclareCaptionLabelSeparator": [{"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "caption-cmd", "score": 0.0003890810058478364}], "DeclareCaptionSubType": [{"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "caption-cmd", "score": 0.0001872850414971473}], "DeclareCaptionJustification": [{"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "caption-cmd", "score": 0.0001872850414971473}], "footnote": [{"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "caption-cmd", "score": 0.2253056071787701}], "DeclareCaptionType": [{"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "caption-cmd", "score": 0.00015256647321237863}], "DeclareCaptionFont": [{"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "caption-cmd", "score": 5.0133404990680195e-05}], "DeclareCaptionFormat": [{"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "caption-cmd", "score": 0.0004717618449370015}], "footnotemark": [{"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "caption-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "caption-cmd", "score": 0.021473212893597875}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "caption-cmd", "score": 0.00037306820619479756}]}, "ifthen": {"value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "ifthen-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "ifthen-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "ifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "ifthen-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "ifthen-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "ifthen-cmd", "score": 0.0012203054938872515}]}, "setspace": {"onehalfspacing": [{"caption": "\\onehalfspacing", "snippet": "\\onehalfspacing", "meta": "setspace-cmd", "score": 0.010655415521079565}], "setstretch": [{"caption": "\\setstretch{}", "snippet": "\\setstretch{$1}", "meta": "setspace-cmd", "score": 0.019634763572332112}], "singlespacing": [{"caption": "\\singlespacing", "snippet": "\\singlespacing", "meta": "setspace-cmd", "score": 0.008351544612280968}], "baselinestretch": [{"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "setspace-cmd", "score": 0.03225161333751885}], "doublespacing": [{"caption": "\\doublespacing", "snippet": "\\doublespacing", "meta": "setspace-cmd", "score": 0.007835428951987135}]}, "multirow": {"multirow": [{"caption": "\\multirow{}{}{}", "snippet": "\\multirow{$1}{$2}{$3}", "meta": "multirow-cmd", "score": 0.07533023600581391}, {"caption": "\\multirow{}[]{}{}", "snippet": "\\multirow{$1}[$2]{$3}{$4}", "meta": "multirow-cmd", "score": 0.07533023600581391}]}, "array": {"multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "array-cmd", "score": 0.5475496759728834}], "endtabular": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "array-cmd", "score": 0.0005078239917067089}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "array-cmd", "score": 0.008565354665444157}], "newcolumntype": [{"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "array-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "array-cmd", "score": 0.018615449342361392}], "arraybackslash": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "array-cmd", "score": 0.014532521139459619}], "tabular": [{"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "array-cmd", "score": 0.0005078239917067089}], "array": [{"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "array-cmd", "score": 2.650484574842396e-05}]}, "titlesec": {"thetitle": [{"caption": "\\thetitle", "snippet": "\\thetitle", "meta": "titlesec-cmd", "score": 0.0015531478302713473}], "titlelabel": [{"caption": "\\titlelabel{}", "snippet": "\\titlelabel{$1}", "meta": "titlesec-cmd", "score": 6.40387839367932e-06}], "titlerule": [{"caption": "\\titlerule", "snippet": "\\titlerule", "meta": "titlesec-cmd", "score": 0.019273712561461216}, {"caption": "\\titlerule[]{}", "snippet": "\\titlerule[$1]{$2}", "meta": "titlesec-cmd", "score": 0.019273712561461216}], "titleclass": [{"caption": "\\titleclass{}{}[]", "snippet": "\\titleclass{$1}{$2}[$3]", "meta": "titlesec-cmd", "score": 0.00028979763314974667}], "titlespacing": [{"caption": "\\titlespacing{}{}{}{}", "snippet": "\\titlespacing{$1}{$2}{$3}{$4}", "meta": "titlesec-cmd", "score": 0.023060856241096765}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "titlesec-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "titlesec-cmd", "score": 0.021170869458413965}], "cleardoublepage": [{"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "titlesec-cmd", "score": 0.04401475128499366}], "filleft": [{"caption": "\\filleft", "snippet": "\\filleft", "meta": "titlesec-cmd", "score": 7.959989906732799e-05}], "markboth": [{"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "titlesec-cmd", "score": 0.03832354639732022}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "titlesec-cmd", "score": 0.03832354639732022}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "titlesec-cmd", "score": 0.008565354665444157}], "markright": [{"caption": "\\markright{}", "snippet": "\\markright{$1}", "meta": "titlesec-cmd", "score": 0.007138622674767024}, {"caption": "\\markright{}{}", "snippet": "\\markright{$1}{$2}", "meta": "titlesec-cmd", "score": 0.007138622674767024}], "filcenter": [{"caption": "\\filcenter", "snippet": "\\filcenter", "meta": "titlesec-cmd", "score": 0.00048351111650118}], "filright": [{"caption": "\\filright", "snippet": "\\filright", "meta": "titlesec-cmd", "score": 7.959989906732799e-05}], "newpage": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "titlesec-cmd", "score": 0.32767484356074394}], "footnote": [{"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "titlesec-cmd", "score": 0.2253056071787701}], "chaptertitlename": [{"caption": "\\chaptertitlename", "snippet": "\\chaptertitlename", "meta": "titlesec-cmd", "score": 0.0016985007766926272}], "titleformat": [{"caption": "\\titleformat{}{}{}{}{}[]", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}[$6]", "meta": "titlesec-cmd", "score": 0.034755139492776116}, {"caption": "\\titleformat{}[]{}{}{}{}", "snippet": "\\titleformat{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "titlesec-cmd", "score": 0.034755139492776116}, {"caption": "\\titleformat{}{}", "snippet": "\\titleformat{$1}{$2}", "meta": "titlesec-cmd", "score": 0.034755139492776116}, {"caption": "\\titleformat{}{}{}{}{}", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}", "meta": "titlesec-cmd", "score": 0.034755139492776116}]}, "multicol": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "multicol-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "multicol-cmd", "score": 0.021170869458413965}], "columnbreak": [{"caption": "\\columnbreak", "snippet": "\\columnbreak", "meta": "multicol-cmd", "score": 0.002609610141555795}], "columnseprulecolor": [{"caption": "\\columnseprulecolor{}", "snippet": "\\columnseprulecolor{$1}", "meta": "multicol-cmd", "score": 1.3314892207625771e-05}], "clearpage": [{"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "multicol-cmd", "score": 0.17891159050470426}], "raggedcolumns": [{"caption": "\\raggedcolumns", "snippet": "\\raggedcolumns", "meta": "multicol-cmd", "score": 0.00027461965178228156}]}, "listings": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "listings-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "listings-cmd", "score": 0.021170869458413965}], "vskip": [{"caption": "\\vskip", "snippet": "\\vskip", "meta": "listings-cmd", "score": 0.05143052892347224}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "listings-cmd", "score": 0.008565354665444157}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "listings-cmd", "score": 0.009278344180101056}], "space": [{"caption": "\\space", "snippet": "\\space", "meta": "listings-cmd", "score": 0.023010734949040847}], "lstinputlisting": [{"caption": "\\lstinputlisting[]{}", "snippet": "\\lstinputlisting[$1]{$2}", "meta": "listings-cmd", "score": 0.011660477607086044}, {"caption": "\\lstinputlisting{}", "snippet": "\\lstinputlisting{$1}", "meta": "listings-cmd", "score": 0.011660477607086044}], "thelstlisting": [{"caption": "\\thelstlisting", "snippet": "\\thelstlisting", "meta": "listings-cmd", "score": 0.00012774128088872144}], "lstinline": [{"caption": "\\lstinline", "snippet": "\\lstinline", "meta": "listings-cmd", "score": 0.005972262850694285}, {"caption": "\\lstinline{}", "snippet": "\\lstinline{$1}", "meta": "listings-cmd", "score": 0.005972262850694285}], "lstlistoflistings": [{"caption": "\\lstlistoflistings", "snippet": "\\lstlistoflistings", "meta": "listings-cmd", "score": 0.005279080363360602}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "listings-cmd", "score": 0.00037306820619479756}]}, "blindtext": {"blinddocument": [{"caption": "\\blinddocument", "snippet": "\\blinddocument", "meta": "blindtext-cmd", "score": 0.00011480988129172825}], "glqq": [{"caption": "\\glqq", "snippet": "\\glqq", "meta": "blindtext-cmd", "score": 0.0039133256714254504}, {"caption": "\\glqq{}", "snippet": "\\glqq{$1}", "meta": "blindtext-cmd", "score": 0.0039133256714254504}], "Blindtext": [{"caption": "\\Blindtext", "snippet": "\\Blindtext", "meta": "blindtext-cmd", "score": 0.006384906903938044}], "blindtext": [{"caption": "\\blindtext", "snippet": "\\blindtext", "meta": "blindtext-cmd", "score": 0.05782040856823667}, {"caption": "\\blindtext[]", "snippet": "\\blindtext[$1]", "meta": "blindtext-cmd", "score": 0.05782040856823667}], "grqq": [{"caption": "\\grqq", "snippet": "\\grqq", "meta": "blindtext-cmd", "score": 0.006659522189248266}, {"caption": "\\grqq{}", "snippet": "\\grqq{$1}", "meta": "blindtext-cmd", "score": 0.006659522189248266}], "xspace": [{"caption": "\\xspace", "snippet": "\\xspace", "meta": "blindtext-cmd", "score": 0.07560370351316588}]}, "enumitem": {"setlist": [{"caption": "\\setlist[]{}", "snippet": "\\setlist[$1]{$2}", "meta": "enumitem-cmd", "score": 0.010894440403680641}, {"caption": "\\setlist{}", "snippet": "\\setlist{$1}", "meta": "enumitem-cmd", "score": 0.010894440403680641}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "enumitem-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "enumitem-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "enumitem-cmd", "score": 0.00530510025314411}], "renewlist": [{"caption": "\\renewlist{}{}{}", "snippet": "\\renewlist{$1}{$2}{$3}", "meta": "enumitem-cmd", "score": 0.0001113322912630871}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "enumitem-cmd", "score": 0.008565354665444157}], "setenumerate": [{"caption": "\\setenumerate[]{}", "snippet": "\\setenumerate[$1]{$2}", "meta": "enumitem-cmd", "score": 7.437178301071255e-05}, {"caption": "\\setenumerate{}", "snippet": "\\setenumerate{$1}", "meta": "enumitem-cmd", "score": 7.437178301071255e-05}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "enumitem-cmd", "score": 0.01590723355124104}], "setitemize": [{"caption": "\\setitemize[]{}", "snippet": "\\setitemize[$1]{$2}", "meta": "enumitem-cmd", "score": 0.0019580640711971786}], "setlistdepth": [{"caption": "\\setlistdepth{}", "snippet": "\\setlistdepth{$1}", "meta": "enumitem-cmd", "score": 0.0001113322912630871}], "descriptionlabel": [{"caption": "\\descriptionlabel{}", "snippet": "\\descriptionlabel{$1}", "meta": "enumitem-cmd", "score": 7.678089052626698e-06}], "newlist": [{"caption": "\\newlist{}{}{}", "snippet": "\\newlist{$1}{$2}{$3}", "meta": "enumitem-cmd", "score": 0.0007266225924074459}], "makelabel": [{"caption": "\\makelabel", "snippet": "\\makelabel", "meta": "enumitem-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel{}", "snippet": "\\makelabel{$1}", "meta": "enumitem-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel[]{}", "snippet": "\\makelabel[$1]{$2}", "meta": "enumitem-cmd", "score": 5.739925426740175e-05}]}, "times": {"rmdefault": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "times-cmd", "score": 0.0012870328701184489}], "sfdefault": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "times-cmd", "score": 0.008427328483895151}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "times-cmd", "score": 0.008427328483895151}], "ttdefault": [{"caption": "\\ttdefault", "snippet": "\\ttdefault", "meta": "times-cmd", "score": 0.0011733254149332488}, {"caption": "\\ttdefault{}", "snippet": "\\ttdefault{$1}", "meta": "times-cmd", "score": 0.0011733254149332488}]}, "subcaption": {"subcaptionbox": [{"caption": "\\subcaptionbox{}{}", "snippet": "\\subcaptionbox{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0008634329663023698}], "subcaption": [{"caption": "\\subcaption{}", "snippet": "\\subcaption{$1}", "meta": "subcaption-cmd", "score": 0.006820005741581297}, {"caption": "\\subcaption[]{}", "snippet": "\\subcaption[$1]{$2}", "meta": "subcaption-cmd", "score": 0.006820005741581297}], "newsubfloat": [{"caption": "\\newsubfloat{}", "snippet": "\\newsubfloat{$1}", "meta": "subcaption-cmd", "score": 0.000615805121082521}], "subref": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subcaption-cmd", "score": 0.007192033516871399}], "ContinuedFloat": [{"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "subcaption-cmd", "score": 5.806935368083486e-05}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "subcaption-cmd", "score": 0.00530510025314411}], "noindent": [{"caption": "\\noindent", "snippet": "\\noindent", "meta": "subcaption-cmd", "score": 0.423657318933529}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "subcaption-cmd", "score": 1.2601205994540519}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "subcaption-cmd", "score": 0.008565354665444157}], "chapter": [{"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "subcaption-cmd", "score": 0.42208896442237664}], "appendix": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "subcaption-cmd", "score": 0.046602473549440505}], "captionsetup": [{"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "subcaption-cmd", "score": 0.029007777361805803}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "subcaption-cmd", "score": 0.029007777361805803}], "captionof": [{"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "subcaption-cmd", "score": 0.018348594199161503}], "label": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "subcaption-cmd", "score": 1.9020216646194645}], "hspace": [{"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "subcaption-cmd", "score": 0.3147193866846124}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "subcaption-cmd", "score": 0.0030745841706804776}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "subcaption-cmd", "score": 0.001042697111754002}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "subcaption-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "subcaption-cmd", "score": 0.021170869458413965}], "DeclareCaptionLabelSeparator": [{"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0003890810058478364}], "DeclareCaptionSubType": [{"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "subcaption-cmd", "score": 0.0001872850414971473}], "DeclareCaptionJustification": [{"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0001872850414971473}], "footnote": [{"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "subcaption-cmd", "score": 0.2253056071787701}], "DeclareCaptionType": [{"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "subcaption-cmd", "score": 0.00015256647321237863}], "DeclareCaptionFont": [{"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "subcaption-cmd", "score": 5.0133404990680195e-05}], "DeclareCaptionFormat": [{"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0004717618449370015}], "footnotemark": [{"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "subcaption-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "subcaption-cmd", "score": 0.021473212893597875}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "subcaption-cmd", "score": 0.00037306820619479756}]}, "bm": {"bm": [{"caption": "\\bm{}", "snippet": "\\bm{$1}", "meta": "bm-cmd", "score": 0.14733018077819282}, {"caption": "\\bm", "snippet": "\\bm", "meta": "bm-cmd", "score": 0.14733018077819282}]}, "fontspec": {"color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "fontspec-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "fontspec-cmd", "score": 0.2864757606289432}]}, "subfigure": {"subfigure": [{"caption": "\\subfigure[]{}", "snippet": "\\subfigure[$1]{$2}", "meta": "subfigure-cmd", "score": 0.03804451602479147}], "subref": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subfigure-cmd", "score": 0.007192033516871399}]}, "calc": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "calc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "calc-cmd", "score": 0.021170869458413965}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "calc-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "calc-cmd", "score": 0.3544684201748615}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "calc-cmd", "score": 0.010241823778997489}], "addtolength": [{"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "calc-cmd", "score": 0.028951021040407424}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "calc-cmd", "score": 0.028951021040407424}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "calc-cmd", "score": 0.0030745841706804776}], "setcounter": [{"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "calc-cmd", "score": 0.10067834885859363}]}, "tabularx": {"write": [{"caption": "\\write", "snippet": "\\write", "meta": "tabularx-cmd", "score": 0.0008038857295393196}], "arraybackslash": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabularx-cmd", "score": 0.014532521139459619}], "let": [{"caption": "\\let", "snippet": "\\let", "meta": "tabularx-cmd", "score": 0.03789745970461662}], "tabularxcolumn": [{"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "tabularx-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "tabularx-cmd", "score": 0.00048507499766588637}], "tabularx": [{"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "tabularx-cmd", "score": 0.0005861357565780464}], "multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabularx-cmd", "score": 0.5475496759728834}], "endtabular": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "tabularx-cmd", "score": 0.0005078239917067089}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "tabularx-cmd", "score": 0.008565354665444157}], "newcolumntype": [{"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "tabularx-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "tabularx-cmd", "score": 0.018615449342361392}], "tabular": [{"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "tabularx-cmd", "score": 0.0005078239917067089}], "array": [{"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "tabularx-cmd", "score": 2.650484574842396e-05}]}, "algorithm": {"listofalgorithms": [{"caption": "\\listofalgorithms", "snippet": "\\listofalgorithms", "meta": "algorithm-cmd", "score": 0.0012576983422794912}], "listalgorithmname": [{"caption": "\\listalgorithmname", "snippet": "\\listalgorithmname", "meta": "algorithm-cmd", "score": 0.00022490402516652368}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithm-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithm-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithm-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithm-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithm-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0012203054938872515}], "listof": [{"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0009837365348002915}], "floatname": [{"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0011934321931750752}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "algorithm-cmd", "score": 1.2601205994540519}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "algorithm-cmd", "score": 0.008565354665444157}], "floatplacement": [{"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0005815474978918903}], "newfloat": [{"caption": "\\newfloat{}{}{}", "snippet": "\\newfloat{$1}{$2}{$3}", "meta": "algorithm-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat", "snippet": "\\newfloat", "meta": "algorithm-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat{}", "snippet": "\\newfloat{$1}", "meta": "algorithm-cmd", "score": 0.0012745874472536625}], "restylefloat": [{"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "algorithm-cmd", "score": 0.0008866338267686714}], "floatstyle": [{"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "algorithm-cmd", "score": 0.0015470917047414941}]}, "biblatex": {"DeclareLanguageMapping": [{"caption": "\\DeclareLanguageMapping{}{}", "snippet": "\\DeclareLanguageMapping{$1}{$2}", "meta": "biblatex-cmd", "score": 0.000703956971675325}], "textcite": [{"caption": "\\textcite{}", "snippet": "\\textcite{$1}", "meta": "biblatex-cmd", "score": 0.0071363824748767206}], "usebibmacro": [{"caption": "\\usebibmacro{}{}", "snippet": "\\usebibmacro{$1}{$2}", "meta": "biblatex-cmd", "score": 9.682965195065755e-05}], "ExecuteBibliographyOptions": [{"caption": "\\ExecuteBibliographyOptions{}", "snippet": "\\ExecuteBibliographyOptions{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "iffieldundef": [{"caption": "\\iffieldundef{}{}{}", "snippet": "\\iffieldundef{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "newblockpunct": [{"caption": "\\newblockpunct", "snippet": "\\newblockpunct", "meta": "biblatex-cmd", "score": 0.0001328804766688459}], "ifentrytype": [{"caption": "\\ifentrytype{}{}{}", "snippet": "\\ifentrytype{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 8.342875497183237e-05}], "DeclareSourcemap": [{"caption": "\\DeclareSourcemap{}", "snippet": "\\DeclareSourcemap{$1}", "meta": "biblatex-cmd", "score": 0.0005203319717980072}], "parentext": [{"caption": "\\parentext", "snippet": "\\parentext", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "mkbibemph": [{"caption": "\\mkbibemph{}", "snippet": "\\mkbibemph{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "name": [{"caption": "\\name{}{}", "snippet": "\\name{$1}{$2}", "meta": "biblatex-cmd", "score": 0.1236289144754329}, {"caption": "\\name", "snippet": "\\name", "meta": "biblatex-cmd", "score": 0.1236289144754329}, {"caption": "\\name{}", "snippet": "\\name{$1}", "meta": "biblatex-cmd", "score": 0.1236289144754329}], "bibliography": [{"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "biblatex-cmd", "score": 0.265566308310754}], "defbibheading": [{"caption": "\\defbibheading{}{}", "snippet": "\\defbibheading{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00013423526504458629}], "AtEveryBibitem": [{"caption": "\\AtEveryBibitem{}", "snippet": "\\AtEveryBibitem{$1}", "meta": "biblatex-cmd", "score": 0.0006862523808353773}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "biblatex-cmd", "score": 0.021170869458413965}], "defbibfilter": [{"caption": "\\defbibfilter{}{}", "snippet": "\\defbibfilter{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0005203319717980072}], "DefineBibliographyStrings": [{"caption": "\\DefineBibliographyStrings{}{}", "snippet": "\\DefineBibliographyStrings{$1}{$2}", "meta": "biblatex-cmd", "score": 0.001537977148659816}], "nocite": [{"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "biblatex-cmd", "score": 0.04990693820960752}], "addabbrvspace": [{"caption": "\\addabbrvspace", "snippet": "\\addabbrvspace", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "DeclareNameAlias": [{"caption": "\\DeclareNameAlias{}{}", "snippet": "\\DeclareNameAlias{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0003596306478652252}], "addtocategory": [{"caption": "\\addtocategory{}{}", "snippet": "\\addtocategory{$1}{$2}", "meta": "biblatex-cmd", "score": 0.008238589553468446}], "enquote": [{"caption": "\\enquote{}", "snippet": "\\enquote{$1}", "meta": "biblatex-cmd", "score": 0.0077432730806830915}], "bibclosebracket": [{"caption": "\\bibclosebracket", "snippet": "\\bibclosebracket", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "keyword": [{"caption": "\\keyword{}", "snippet": "\\keyword{$1}", "meta": "biblatex-cmd", "score": 0.0056978719547823445}], "printbibliography": [{"caption": "\\printbibliography", "snippet": "\\printbibliography", "meta": "biblatex-cmd", "score": 0.028923378512954446}, {"caption": "\\printbibliography[]", "snippet": "\\printbibliography[$1]", "meta": "biblatex-cmd", "score": 0.028923378512954446}], "DeclareFieldFormat": [{"caption": "\\DeclareFieldFormat{}{}", "snippet": "\\DeclareFieldFormat{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00028207109055618685}], "parencite": [{"caption": "\\parencite{}", "snippet": "\\parencite{$1}", "meta": "biblatex-cmd", "score": 0.0447747090014577}, {"caption": "\\parencite[]{}", "snippet": "\\parencite[$1]{$2}", "meta": "biblatex-cmd", "score": 0.0447747090014577}], "addslash": [{"caption": "\\addslash", "snippet": "\\addslash", "meta": "biblatex-cmd", "score": 0.0002657609533376918}], "bibcloseparen": [{"caption": "\\bibcloseparen", "snippet": "\\bibcloseparen", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "midsentence": [{"caption": "\\midsentence", "snippet": "\\midsentence", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}], "bibopenparen": [{"caption": "\\bibopenparen", "snippet": "\\bibopenparen", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "addspace": [{"caption": "\\addspace", "snippet": "\\addspace", "meta": "biblatex-cmd", "score": 0.0002657609533376918}], "AtBeginBibliography": [{"caption": "\\AtBeginBibliography{}", "snippet": "\\AtBeginBibliography{$1}", "meta": "biblatex-cmd", "score": 0.0004668773504581073}], "break": [{"caption": "\\break", "snippet": "\\break", "meta": "biblatex-cmd", "score": 0.016352452390960115}, {"caption": "\\break{}", "snippet": "\\break{$1}", "meta": "biblatex-cmd", "score": 0.016352452390960115}, {"caption": "\\break{}{}", "snippet": "\\break{$1}{$2}", "meta": "biblatex-cmd", "score": 0.016352452390960115}], "item": [{"caption": "\\item", "snippet": "\\item", "meta": "biblatex-cmd", "score": 3.8010438111017444}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "biblatex-cmd", "score": 3.8010438111017444}], "AtEveryCite": [{"caption": "\\AtEveryCite{}", "snippet": "\\AtEveryCite{$1}", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "nolinkurl": [{"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "biblatex-cmd", "score": 0.0004995635515943437}], "section": [{"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "biblatex-cmd", "score": 3.0970217854204676}], "mkbibquote": [{"caption": "\\mkbibquote{}", "snippet": "\\mkbibquote{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "renewbibmacro": [{"caption": "\\renewbibmacro{}{}", "snippet": "\\renewbibmacro{$1}{$2}", "meta": "biblatex-cmd", "score": 9.70299207241043e-05}], "DeclareBibliographyCategory": [{"caption": "\\DeclareBibliographyCategory{}", "snippet": "\\DeclareBibliographyCategory{$1}", "meta": "biblatex-cmd", "score": 0.0010298236941835557}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "biblatex-cmd", "score": 0.009278344180101056}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}], "newbibmacro": [{"caption": "\\newbibmacro{}[]{}", "snippet": "\\newbibmacro{$1}[$2]{$3}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}], "addbibresource": [{"caption": "\\addbibresource{}", "snippet": "\\addbibresource{$1}", "meta": "biblatex-cmd", "score": 0.033545778388159704}], "bibopenbracket": [{"caption": "\\bibopenbracket", "snippet": "\\bibopenbracket", "meta": "biblatex-cmd", "score": 0.0005125772067631753}], "cite": [{"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "biblatex-cmd", "score": 2.343559749970739}], "list": [{"caption": "\\list{}{}", "snippet": "\\list{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00046570666700199663}, {"caption": "\\list{}", "snippet": "\\list{$1}", "meta": "biblatex-cmd", "score": 0.00046570666700199663}, {"caption": "\\list", "snippet": "\\list", "meta": "biblatex-cmd", "score": 0.00046570666700199663}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "biblatex-cmd", "score": 0.00530510025314411}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "biblatex-cmd", "score": 0.002958865219480927}], "pretocmd": [{"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00028992557275763024}], "ifdefempty": [{"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 7.482069221111606e-05}], "AtBeginEnvironment": [{"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "biblatex-cmd", "score": 4.002553629215439e-05}], "apptocmd": [{"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00035805058319299113}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "biblatex-cmd", "score": 0.001042697111754002}], "ifundef": [{"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.00014933999190577243}], "newbool": [{"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "biblatex-cmd", "score": 7.723677706376668e-05}], "newrobustcmd": [{"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "biblatex-cmd", "score": 0.0006607703576475988}], "robustify": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "biblatex-cmd", "score": 0.002671974990314091}], "ifnumcomp": [{"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "biblatex-cmd", "score": 0.00029867998381154486}], "setbool": [{"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00023171033119130004}], "patchcmd": [{"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "biblatex-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "biblatex-cmd", "score": 0.002560998917940627}], "ifstrequal": [{"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00041192947767342225}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.00041192947767342225}], "preto": [{"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "biblatex-cmd", "score": 8.860754525300578e-05}], "ifdefstring": [{"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.0006796212875843042}], "csedef": [{"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00014933999190577243}], "ifbool": [{"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 7.723677706376668e-05}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "biblatex-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "biblatex-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "biblatex-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "biblatex-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0012203054938872515}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00037306820619479756}], "UrlBigBreaks": [{"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}], "urlstyle": [{"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "biblatex-cmd", "score": 0.010515056688180681}], "UrlOrds": [{"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "biblatex-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "biblatex-cmd", "score": 0.0006882563723629154}], "UrlBreaks": [{"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "biblatex-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "biblatex-cmd", "score": 0.001030592515645366}], "UrlNoBreaks": [{"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}], "UrlFont": [{"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "biblatex-cmd", "score": 0.0032990580087398644}], "Url": [{"caption": "\\Url", "snippet": "\\Url", "meta": "biblatex-cmd", "score": 0.0002854206807593436}], "UrlSpecials": [{"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}], "urldef": [{"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "biblatex-cmd", "score": 0.008041789461944983}]}, "microtype": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "microtype-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "microtype-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "microtype-cmd", "score": 0.00530510025314411}], "lsstyle": [{"caption": "\\lsstyle", "snippet": "\\lsstyle", "meta": "microtype-cmd", "score": 0.0023367519914345774}], "DisableLigatures": [{"caption": "\\DisableLigatures[]{}", "snippet": "\\DisableLigatures[$1]{$2}", "meta": "microtype-cmd", "score": 0.0009805246614299932}], "space": [{"caption": "\\space", "snippet": "\\space", "meta": "microtype-cmd", "score": 0.023010734949040847}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "microtype-cmd", "score": 0.00037306820619479756}]}, "etoolbox": {"pretocmd": [{"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00028992557275763024}], "ifdefempty": [{"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 7.482069221111606e-05}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "etoolbox-cmd", "score": 0.00530510025314411}], "AtBeginEnvironment": [{"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "etoolbox-cmd", "score": 4.002553629215439e-05}], "apptocmd": [{"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00035805058319299113}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "etoolbox-cmd", "score": 0.001042697111754002}], "ifundef": [{"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 0.00014933999190577243}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "etoolbox-cmd", "score": 0.008565354665444157}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "etoolbox-cmd", "score": 0.009278344180101056}], "newbool": [{"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "etoolbox-cmd", "score": 7.723677706376668e-05}], "newrobustcmd": [{"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "etoolbox-cmd", "score": 0.0006607703576475988}], "robustify": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "etoolbox-cmd", "score": 0.002671974990314091}], "ifnumcomp": [{"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "etoolbox-cmd", "score": 0.00029867998381154486}], "setbool": [{"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "etoolbox-cmd", "score": 0.00023171033119130004}], "patchcmd": [{"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "etoolbox-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "etoolbox-cmd", "score": 0.002560998917940627}], "ifstrequal": [{"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00041192947767342225}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 0.00041192947767342225}], "preto": [{"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "etoolbox-cmd", "score": 8.860754525300578e-05}], "ifdefstring": [{"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.0006796212875843042}], "csedef": [{"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "etoolbox-cmd", "score": 0.00014933999190577243}], "ifbool": [{"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 7.723677706376668e-05}]}, "parskip": {}, "longtable": {"endfoot": [{"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "longtable-cmd", "score": 0.00044045261916551967}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "longtable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "longtable-cmd", "score": 0.021170869458413965}], "pagebreak": [{"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "longtable-cmd", "score": 0.0313525090421608}], "tablename": [{"caption": "\\tablename", "snippet": "\\tablename", "meta": "longtable-cmd", "score": 0.0029238994233674776}], "newpage": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "longtable-cmd", "score": 0.32767484356074394}], "endhead": [{"caption": "\\endhead", "snippet": "\\endhead", "meta": "longtable-cmd", "score": 0.0023853501147448834}], "endfirsthead": [{"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "longtable-cmd", "score": 0.0016148498709822416}], "endlastfoot": [{"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "longtable-cmd", "score": 0.00044045261916551967}], "nopagebreak": [{"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "longtable-cmd", "score": 9.952664522415981e-05}]}, "mathtools": {"nonumber": [{"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "mathtools-cmd", "score": 0.05286168328323948}], "adjustlimits": [{"caption": "\\adjustlimits", "snippet": "\\adjustlimits", "meta": "mathtools-cmd", "score": 0.0005307066890271085}], "prescript": [{"caption": "\\prescript{}{}{}", "snippet": "\\prescript{$1}{$2}{$3}", "meta": "mathtools-cmd", "score": 8.778465160861423e-06}], "xhookrightarrow": [{"caption": "\\xhookrightarrow{}", "snippet": "\\xhookrightarrow{$1}", "meta": "mathtools-cmd", "score": 5.444260823474129e-05}], "mathclap": [{"caption": "\\mathclap{}", "snippet": "\\mathclap{$1}", "meta": "mathtools-cmd", "score": 7.84378567451772e-05}], "xleftrightarrow": [{"caption": "\\xleftrightarrow[][]{}", "snippet": "\\xleftrightarrow[$1][$2]{$3}", "meta": "mathtools-cmd", "score": 4.015559489911509e-05}], "underbrace": [{"caption": "\\underbrace{}", "snippet": "\\underbrace{$1}", "meta": "mathtools-cmd", "score": 0.010455322655568438}], "mathrlap": [{"caption": "\\mathrlap{}", "snippet": "\\mathrlap{$1}", "meta": "mathtools-cmd", "score": 0.0003112817211637952}], "coloneqq": [{"caption": "\\coloneqq", "snippet": "\\coloneqq", "meta": "mathtools-cmd", "score": 0.0014407293323958122}], "intertext": [{"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "mathtools-cmd", "score": 0.0016148076375871775}], "DeclarePairedDelimiter": [{"caption": "\\DeclarePairedDelimiter{}{}{}", "snippet": "\\DeclarePairedDelimiter{$1}{$2}{$3}", "meta": "mathtools-cmd", "score": 0.0033916678416372487}, {"caption": "\\DeclarePairedDelimiter", "snippet": "\\DeclarePairedDelimiter", "meta": "mathtools-cmd", "score": 0.0033916678416372487}], "mathllap": [{"caption": "\\mathllap{}", "snippet": "\\mathllap{$1}", "meta": "mathtools-cmd", "score": 3.140504277052775e-05}], "MoveEqLeft": [{"caption": "\\MoveEqLeft", "snippet": "\\MoveEqLeft", "meta": "mathtools-cmd", "score": 5.343949980628182e-05}], "vcentcolon": [{"caption": "\\vcentcolon", "snippet": "\\vcentcolon", "meta": "mathtools-cmd", "score": 0.00021361943526711615}], "overbrace": [{"caption": "\\overbrace{}", "snippet": "\\overbrace{$1}", "meta": "mathtools-cmd", "score": 0.0006208899025403125}], "varprojlim": [{"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "mathtools-cmd", "score": 0.0004286136584068833}], "max": [{"caption": "\\max", "snippet": "\\max", "meta": "mathtools-cmd", "score": 0.0412417160860681}], "varlimsup": [{"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "mathtools-cmd", "score": 6.204977642542802e-05}], "Pr": [{"caption": "\\Pr", "snippet": "\\Pr", "meta": "mathtools-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "mathtools-cmd", "score": 0.010227440663206161}], "arctan": [{"caption": "\\arctan", "snippet": "\\arctan", "meta": "mathtools-cmd", "score": 0.0011971697553682045}], "sin": [{"caption": "\\sin", "snippet": "\\sin", "meta": "mathtools-cmd", "score": 0.040462704205325724}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "mathtools-cmd", "score": 0.040462704205325724}], "arcsin": [{"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "mathtools-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "mathtools-cmd", "score": 0.0007754886988089101}], "ln": [{"caption": "\\ln", "snippet": "\\ln", "meta": "mathtools-cmd", "score": 0.025399588510250454}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "mathtools-cmd", "score": 0.025399588510250454}], "log": [{"caption": "\\log", "snippet": "\\log", "meta": "mathtools-cmd", "score": 0.048131780413380156}], "min": [{"caption": "\\min", "snippet": "\\min", "meta": "mathtools-cmd", "score": 0.03059279766697554}], "arg": [{"caption": "\\arg", "snippet": "\\arg", "meta": "mathtools-cmd", "score": 0.007190995792600074}], "coth": [{"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "mathtools-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "mathtools-cmd", "score": 0.00025939638266884963}], "hom": [{"caption": "\\hom", "snippet": "\\hom", "meta": "mathtools-cmd", "score": 8.180643329881783e-05}], "gcd": [{"caption": "\\gcd", "snippet": "\\gcd", "meta": "mathtools-cmd", "score": 0.002254008371792865}], "varliminf": [{"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "mathtools-cmd", "score": 6.204977642542802e-05}], "varinjlim": [{"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "mathtools-cmd", "score": 0.000361814283649031}], "DeclareMathOperator": [{"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "mathtools-cmd", "score": 0.029652646406088844}], "tan": [{"caption": "\\tan", "snippet": "\\tan", "meta": "mathtools-cmd", "score": 0.006176392560798349}], "dim": [{"caption": "\\dim", "snippet": "\\dim", "meta": "mathtools-cmd", "score": 0.0038210003967178293}], "exp": [{"caption": "\\exp", "snippet": "\\exp", "meta": "mathtools-cmd", "score": 0.024042569531889824}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "mathtools-cmd", "score": 0.024042569531889824}], "cot": [{"caption": "\\cot", "snippet": "\\cot", "meta": "mathtools-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "mathtools-cmd", "score": 0.0003640644365701238}], "sup": [{"caption": "\\sup", "snippet": "\\sup", "meta": "mathtools-cmd", "score": 0.00937183417998101}], "ker": [{"caption": "\\ker", "snippet": "\\ker", "meta": "mathtools-cmd", "score": 0.002475379242338094}], "deg": [{"caption": "\\deg", "snippet": "\\deg", "meta": "mathtools-cmd", "score": 0.005542465148816408}], "csc": [{"caption": "\\csc", "snippet": "\\csc", "meta": "mathtools-cmd", "score": 0.00013963711107573638}], "limsup": [{"caption": "\\limsup", "snippet": "\\limsup", "meta": "mathtools-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "mathtools-cmd", "score": 0.002354950225950599}], "sinh": [{"caption": "\\sinh", "snippet": "\\sinh", "meta": "mathtools-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "mathtools-cmd", "score": 0.0006435164702005918}], "cosh": [{"caption": "\\cosh", "snippet": "\\cosh", "meta": "mathtools-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "mathtools-cmd", "score": 0.0008896391580266903}], "arccos": [{"caption": "\\arccos", "snippet": "\\arccos", "meta": "mathtools-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "mathtools-cmd", "score": 0.001781687642431819}], "lim": [{"caption": "\\lim", "snippet": "\\lim", "meta": "mathtools-cmd", "score": 0.052875658811662965}], "inf": [{"caption": "\\inf", "snippet": "\\inf", "meta": "mathtools-cmd", "score": 0.00340470256994063}], "operatorname": [{"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "mathtools-cmd", "score": 0.021827708582623066}], "operatornamewithlimits": [{"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "mathtools-cmd", "score": 0.0022415507993352067}], "det": [{"caption": "\\det", "snippet": "\\det", "meta": "mathtools-cmd", "score": 0.005640718203101287}], "tanh": [{"caption": "\\tanh", "snippet": "\\tanh", "meta": "mathtools-cmd", "score": 0.0021392350622877272}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "mathtools-cmd", "score": 0.0021392350622877272}], "sec": [{"caption": "\\sec", "snippet": "\\sec", "meta": "mathtools-cmd", "score": 0.0005912636157903734}], "liminf": [{"caption": "\\liminf", "snippet": "\\liminf", "meta": "mathtools-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "mathtools-cmd", "score": 0.0015513861600956144}], "cos": [{"caption": "\\cos", "snippet": "\\cos", "meta": "mathtools-cmd", "score": 0.05037007311838572}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "mathtools-cmd", "score": 0.05037007311838572}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "mathtools-cmd", "score": 0.00037306820619479756}], "longleftrightarrow": [{"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "mathtools-cmd", "score": 0.0002851769278703356}], "bmod": [{"caption": "\\bmod", "snippet": "\\bmod", "meta": "mathtools-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "mathtools-cmd", "score": 0.002022594681005002}], "big": [{"caption": "\\big", "snippet": "\\big", "meta": "mathtools-cmd", "score": 0.056146864111818975}], "Ddot": [{"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "mathaccentV": [{"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "mathtools-cmd", "score": 6.216218551413489e-05}], "binom": [{"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "mathtools-cmd", "score": 0.013010882180364367}], "Breve": [{"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "bigg": [{"caption": "\\bigg", "snippet": "\\bigg", "meta": "mathtools-cmd", "score": 0.043270542864372256}], "frac": [{"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "mathtools-cmd", "score": 1.43498545644915}], "mspace": [{"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "mathtools-cmd", "score": 3.423236656565836e-05}], "Longleftrightarrow": [{"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "mathtools-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "mathtools-cmd", "score": 0.0004896780659212191}], "dotsc": [{"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "mathtools-cmd", "score": 0.0008555101484119994}], "bigoplus": [{"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "mathtools-cmd", "score": 0.0011508785476242003}], "hookleftarrow": [{"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "mathtools-cmd", "score": 0.0016498799924012809}], "leftroot": [{"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "mathtools-cmd", "score": 6.625561928497235e-05}], "dbinom": [{"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006800272303210672}], "Check": [{"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "tbinom": [{"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "mathtools-cmd", "score": 1.3908704929884828e-05}], "hookrightarrow": [{"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "mathtools-cmd", "score": 0.0015607282046545064}], "pmod": [{"caption": "\\pmod", "snippet": "\\pmod", "meta": "mathtools-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "mathtools-cmd", "score": 0.0011773327219377148}], "Dot": [{"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "hdotsfor": [{"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "mathtools-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "mathtools-cmd", "score": 0.00024247684499275043}], "bigvee": [{"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "mathtools-cmd", "score": 0.0011677288242806726}], "allowdisplaybreaks": [{"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "mathtools-cmd", "score": 0.005931777024772073}], "doteq": [{"caption": "\\doteq", "snippet": "\\doteq", "meta": "mathtools-cmd", "score": 3.164631070474435e-05}], "ldots": [{"caption": "\\ldots", "snippet": "\\ldots", "meta": "mathtools-cmd", "score": 0.115046852322159}], "bigotimes": [{"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "mathtools-cmd", "score": 0.000984722260624791}], "xrightarrow": [{"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "mathtools-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "mathtools-cmd", "score": 0.004163642482777231}], "mod": [{"caption": "\\mod", "snippet": "\\mod", "meta": "mathtools-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "mathtools-cmd", "score": 0.0015181439193121889}], "Acute": [{"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "Bar": [{"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "pod": [{"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "mathtools-cmd", "score": 2.7817409859769657e-05}], "Grave": [{"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "label": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "mathtools-cmd", "score": 1.9020216646194645}], "dfrac": [{"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.05397539787429476}], "overline": [{"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "mathtools-cmd", "score": 0.11280487530505384}], "overset": [{"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "mathtools-cmd", "score": 0.007644183804631175}], "colon": [{"caption": "\\colon", "snippet": "\\colon", "meta": "mathtools-cmd", "score": 0.005300291684408929}], "prod": [{"caption": "\\prod", "snippet": "\\prod", "meta": "mathtools-cmd", "score": 0.025498838855134164}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "mathtools-cmd", "score": 0.009278344180101056}], "implies": [{"caption": "\\implies", "snippet": "\\implies", "meta": "mathtools-cmd", "score": 0.02182798748382703}], "numberwithin": [{"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006963564970792657}], "Hat": [{"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "iff": [{"caption": "\\iff", "snippet": "\\iff", "meta": "mathtools-cmd", "score": 0.004209937150980285}], "sideset": [{"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "dots": [{"caption": "\\dots", "snippet": "\\dots", "meta": "mathtools-cmd", "score": 0.0847414497955395}], "xleftarrow": [{"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "mathtools-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "mathtools-cmd", "score": 3.5779964196240445e-05}], "sum": [{"caption": "\\sum", "snippet": "\\sum", "meta": "mathtools-cmd", "score": 0.4273070408257405}], "smash": [{"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "mathtools-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "mathtools-cmd", "score": 0.008197171096663127}], "over": [{"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "mathtools-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "mathtools-cmd", "score": 0.0054372322008878786}], "cfrac": [{"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006765684097139381}], "Longleftarrow": [{"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "mathtools-cmd", "score": 8.477207854183949e-05}], "Bigg": [{"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "mathtools-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "mathtools-cmd", "score": 0.015507614799858266}], "idotsint": [{"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "mathtools-cmd", "score": 1.3908704929884828e-05}], "Tilde": [{"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "mathtools-cmd", "score": 7.874446783586035e-05}], "Big": [{"caption": "\\Big", "snippet": "\\Big", "meta": "mathtools-cmd", "score": 0.05036999011667452}], "underset": [{"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "mathtools-cmd", "score": 0.012799893214578391}], "ignorespacesafterend": [{"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "mathtools-cmd", "score": 0.0010893680553454854}], "genfrac": [{"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "mathtools-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "mathtools-cmd", "score": 0.004820143328295316}], "And": [{"caption": "\\And", "snippet": "\\And", "meta": "mathtools-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "mathtools-cmd", "score": 0.0011582952152188854}], "longrightarrow": [{"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "mathtools-cmd", "score": 0.013399422292458848}], "bigsqcup": [{"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "mathtools-cmd", "score": 0.0003468284144579442}], "longleftarrow": [{"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "mathtools-cmd", "score": 0.0011096532692473691}], "mapsto": [{"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "mathtools-cmd", "score": 0.006473769486518971}], "coprod": [{"caption": "\\coprod", "snippet": "\\coprod", "meta": "mathtools-cmd", "score": 0.00011383372700282614}], "int": [{"caption": "\\int", "snippet": "\\int", "meta": "mathtools-cmd", "score": 0.1195126537065476}], "theequation": [{"caption": "\\theequation", "snippet": "\\theequation", "meta": "mathtools-cmd", "score": 0.002995924112493351}], "notag": [{"caption": "\\notag", "snippet": "\\notag", "meta": "mathtools-cmd", "score": 0.00322520920930312}], "Longrightarrow": [{"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "mathtools-cmd", "score": 0.002459139437356601}], "eqref": [{"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "mathtools-cmd", "score": 0.06344722698381076}], "arraystretch": [{"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "mathtools-cmd", "score": 0.022232443201007313}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "mathtools-cmd", "score": 0.022232443201007313}], "impliedby": [{"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "mathtools-cmd", "score": 2.3482915591834053e-05}], "Vec": [{"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}], "longmapsto": [{"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "mathtools-cmd", "score": 0.0017755897148012264}], "substack": [{"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "mathtools-cmd", "score": 0.0037564126836193133}], "uproot": [{"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "mathtools-cmd", "score": 6.625561928497235e-05}], "boxed": [{"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "mathtools-cmd", "score": 0.0035536135737312827}], "bigwedge": [{"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "mathtools-cmd", "score": 0.000347742918592393}], "atop": [{"caption": "\\atop", "snippet": "\\atop", "meta": "mathtools-cmd", "score": 0.0006518541515279979}], "bigcap": [{"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "mathtools-cmd", "score": 0.005709261168797874}], "bigcup": [{"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "mathtools-cmd", "score": 0.0059092660111195894}], "oint": [{"caption": "\\oint", "snippet": "\\oint", "meta": "mathtools-cmd", "score": 0.0028650540724050534}], "AmS": [{"caption": "\\AmS", "snippet": "\\AmS", "meta": "mathtools-cmd", "score": 0.00047859486202980376}], "dotsi": [{"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "mathtools-cmd", "score": 2.7817409859769657e-05}], "tfrac": [{"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.0005923542426657187}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mathtools-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mathtools-cmd", "score": 0.021170869458413965}], "text": [{"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "mathtools-cmd", "score": 0.36085779561541087}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mathtools-cmd", "score": 0.010241823778997489}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "mathtools-cmd", "score": 0.008565354665444157}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mathtools-cmd", "score": 0.0030745841706804776}], "boldsymbol": [{"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "mathtools-cmd", "score": 0.1816956061674236}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "mathtools-cmd", "score": 0.1816956061674236}], "pmb": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "mathtools-cmd", "score": 0.019171182556792562}], "frenchspacing": [{"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "mathtools-cmd", "score": 0.0063276692758974925}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "mathtools-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "mathtools-cmd", "score": 0.3544684201748615}], "addtolength": [{"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "mathtools-cmd", "score": 0.028951021040407424}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "mathtools-cmd", "score": 0.028951021040407424}], "setcounter": [{"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "mathtools-cmd", "score": 0.10067834885859363}]}, "verbatim": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "verbatim-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "verbatim-cmd", "score": 0.021170869458413965}], "verbatiminput": [{"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "verbatim-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "verbatim-cmd", "score": 0.0024547099784948665}], "endverbatim": [{"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "verbatim-cmd", "score": 0.0022216421267780076}], "par": [{"caption": "\\par", "snippet": "\\par", "meta": "verbatim-cmd", "score": 0.41385054378501596}], "verbatim": [{"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "verbatim-cmd", "score": 0.0072203369120285256}]}, "wrapfig": {"wrapfigure": [{"caption": "\\wrapfigure{}{}", "snippet": "\\wrapfigure{$1}{$2}", "meta": "wrapfig-cmd", "score": 0.0003295435821387379}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "wrapfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "wrapfig-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "wrapfig-cmd", "score": 0.00530510025314411}], "par": [{"caption": "\\par", "snippet": "\\par", "meta": "wrapfig-cmd", "score": 0.41385054378501596}]}, "epsfig": {"psfig": [{"caption": "\\psfig{}", "snippet": "\\psfig{$1}", "meta": "epsfig-cmd", "score": 0.0017552046452897515}], "epsfbox": [{"caption": "\\epsfbox{}", "snippet": "\\epsfbox{$1}", "meta": "epsfig-cmd", "score": 0.00013712781345832882}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "epsfig-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "epsfig-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "epsfig-cmd", "score": 0.0047181502268010085}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "epsfig-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "epsfig-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "epsfig-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "epsfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "epsfig-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epsfig-cmd", "score": 0.00530510025314411}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "epsfig-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "epsfig-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "epsfig-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "epsfig-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "epsfig-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "epsfig-cmd", "score": 0.017834153815870245}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "epsfig-cmd", "score": 0.00037306820619479756}]}, "cite": {"citenum": [{"caption": "\\citenum{}", "snippet": "\\citenum{$1}", "meta": "cite-cmd", "score": 0.0027420903627423383}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "cite-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "cite-cmd", "score": 0.021170869458413965}], "citeonline": [{"caption": "\\citeonline{}", "snippet": "\\citeonline{$1}", "meta": "cite-cmd", "score": 0.014277840409455324}], "nocite": [{"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "cite-cmd", "score": 0.04990693820960752}], "cite": [{"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "cite-cmd", "score": 2.343559749970739}]}, "lipsum": {"setlipsumdefault": [{"caption": "\\setlipsumdefault{}", "snippet": "\\setlipsumdefault{$1}", "meta": "lipsum-cmd", "score": 0.00024112945034541791}], "lipsum": [{"caption": "\\lipsum[]", "snippet": "\\lipsum[$1]", "meta": "lipsum-cmd", "score": 0.0300787181624191}]}, "textcomp": {}, "algpseudocode": {"value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algpseudocode-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algpseudocode-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algpseudocode-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algpseudocode-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algpseudocode-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algpseudocode-cmd", "score": 0.0012203054938872515}], "BState": [{"caption": "\\BState{}", "snippet": "\\BState{$1}", "meta": "algpseudocode-cmd", "score": 0.0008685861525307122}, {"caption": "\\BState", "snippet": "\\BState", "meta": "algpseudocode-cmd", "score": 0.0008685861525307122}], "algnewcommand": [{"caption": "\\algnewcommand", "snippet": "\\algnewcommand", "meta": "algpseudocode-cmd", "score": 0.0030209395012065327}, {"caption": "\\algnewcommand{}[]{}", "snippet": "\\algnewcommand{$1}[$2]{$3}", "meta": "algpseudocode-cmd", "score": 0.0030209395012065327}], "algblockdefx": [{"caption": "\\algblockdefx{}{}[]", "snippet": "\\algblockdefx{$1}{$2}[$3]", "meta": "algpseudocode-cmd", "score": 0.00025315185701145097}], "algloopdefx": [{"caption": "\\algloopdefx{}[][]{}", "snippet": "\\algloopdefx{$1}[$2][$3]{$4}", "meta": "algpseudocode-cmd", "score": 0.00025315185701145097}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "algpseudocode-cmd", "score": 0.008565354665444157}], "algblock": [{"caption": "\\algblock{}{}", "snippet": "\\algblock{$1}{$2}", "meta": "algpseudocode-cmd", "score": 0.0007916858220314837}], "algtext": [{"caption": "\\algtext{}", "snippet": "\\algtext{$1}", "meta": "algpseudocode-cmd", "score": 0.0005463612015579842}], "Statex": [{"caption": "\\Statex", "snippet": "\\Statex", "meta": "algpseudocode-cmd", "score": 0.008622777195102994}], "algrenewtext": [{"caption": "\\algrenewtext{}{}", "snippet": "\\algrenewtext{$1}{$2}", "meta": "algpseudocode-cmd", "score": 0.0024415580558825975}, {"caption": "\\algrenewtext{}[]{}", "snippet": "\\algrenewtext{$1}[$2]{$3}", "meta": "algpseudocode-cmd", "score": 0.0024415580558825975}], "Comment": [{"caption": "\\Comment{}", "snippet": "\\Comment{$1}", "meta": "algpseudocode-cmd", "score": 0.005178604573219454}], "algdef": [{"caption": "\\algdef{}[]{}{}{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "algpseudocode-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}{}[]{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}[$5]{$6}{$7}", "meta": "algpseudocode-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}[]{}", "snippet": "\\algdef{$1}[$2]{$3}[$4]{$5}", "meta": "algpseudocode-cmd", "score": 0.0003102486920966127}], "algrenewcommand": [{"caption": "\\algrenewcommand", "snippet": "\\algrenewcommand", "meta": "algpseudocode-cmd", "score": 0.0019861803661869416}]}, "textpos": {"textblockorigin": [{"caption": "\\textblockorigin{}{}", "snippet": "\\textblockorigin{$1}{$2}", "meta": "textpos-cmd", "score": 0.016306266556901577}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "textpos-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "textpos-cmd", "score": 0.2864757606289432}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "textpos-cmd", "score": 0.00037306820619479756}]}, "subfig": {"protect": [{"caption": "\\protect", "snippet": "\\protect", "meta": "subfig-cmd", "score": 0.020062059118610417}], "subref": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subfig-cmd", "score": 0.007192033516871399}], "subfloat": [{"caption": "\\subfloat[]{}", "snippet": "\\subfloat[$1]{$2}", "meta": "subfig-cmd", "score": 0.0286920437310672}, {"caption": "\\subfloat{}", "snippet": "\\subfloat{$1}", "meta": "subfig-cmd", "score": 0.0286920437310672}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "subfig-cmd", "score": 0.00037306820619479756}]}, "enumerate": {"csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "enumerate-cmd", "score": 0.008565354665444157}], "makelabel": [{"caption": "\\makelabel", "snippet": "\\makelabel", "meta": "enumerate-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel{}", "snippet": "\\makelabel{$1}", "meta": "enumerate-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel[]{}", "snippet": "\\makelabel[$1]{$2}", "meta": "enumerate-cmd", "score": 5.739925426740175e-05}]}, "pdfpages": {"addcontentsline": [{"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "pdfpages-cmd", "score": 0.0750300331236939}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "pdfpages-cmd", "score": 0.008565354665444157}], "includepdf": [{"caption": "\\includepdf[]{}", "snippet": "\\includepdf[$1]{$2}", "meta": "pdfpages-cmd", "score": 0.023931732745590156}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pdfpages-cmd", "score": 1.4613076335483517}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "pdfpages-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "pdfpages-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "pdfpages-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "pdfpages-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "pdfpages-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.0012203054938872515}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.00037306820619479756}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pdfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pdfpages-cmd", "score": 0.021170869458413965}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "pdfpages-cmd", "score": 0.002958865219480927}], "AtBeginShipoutNext": [{"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "pdfpages-cmd", "score": 0.0005277905480209891}], "AtBeginShipout": [{"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "pdfpages-cmd", "score": 0.00047530324346933345}], "AddToShipoutPicture": [{"caption": "\\AddToShipoutPicture{}", "snippet": "\\AddToShipoutPicture{$1}", "meta": "pdfpages-cmd", "score": 0.001765808042285129}], "LenToUnit": [{"caption": "\\LenToUnit{}", "snippet": "\\LenToUnit{$1}", "meta": "pdfpages-cmd", "score": 0.0007216282820556304}], "AddToShipoutPictureBG": [{"caption": "\\AddToShipoutPictureBG{}", "snippet": "\\AddToShipoutPictureBG{$1}", "meta": "pdfpages-cmd", "score": 0.0008957666085644653}], "AddToShipoutPictureFG": [{"caption": "\\AddToShipoutPictureFG{}", "snippet": "\\AddToShipoutPictureFG{$1}", "meta": "pdfpages-cmd", "score": 0.000325977535138643}], "AtPageUpperLeft": [{"caption": "\\AtPageUpperLeft{}", "snippet": "\\AtPageUpperLeft{$1}", "meta": "pdfpages-cmd", "score": 0.0003608141410278152}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "pdfpages-cmd", "score": 0.3544684201748615}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.010241823778997489}], "addtolength": [{"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.028951021040407424}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "pdfpages-cmd", "score": 0.028951021040407424}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "pdfpages-cmd", "score": 0.0030745841706804776}], "setcounter": [{"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.10067834885859363}]}, "epstopdf": {"csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epstopdf-cmd", "score": 0.00530510025314411}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}], "epstopdfDeclareGraphicsRule": [{"caption": "\\epstopdfDeclareGraphicsRule{}{}{}{}", "snippet": "\\epstopdfDeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}], "OutputFile": [{"caption": "\\OutputFile", "snippet": "\\OutputFile", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}], "epstopdfsetup": [{"caption": "\\epstopdfsetup{}", "snippet": "\\epstopdfsetup{$1}", "meta": "epstopdf-cmd", "score": 0.0009941134326203623}], "AppendGraphicsExtensions": [{"caption": "\\AppendGraphicsExtensions{}", "snippet": "\\AppendGraphicsExtensions{$1}", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}], "check": [{"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "epstopdf-cmd", "score": 0.0058342578961340175}], "space": [{"caption": "\\space", "snippet": "\\space", "meta": "epstopdf-cmd", "score": 0.023010734949040847}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "epstopdf-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "epstopdf-cmd", "score": 0.021170869458413965}]}, "latexsym": {}, "lmodern": {"rmdefault": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "lmodern-cmd", "score": 0.0012870328701184489}], "sfdefault": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "lmodern-cmd", "score": 0.008427328483895151}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "lmodern-cmd", "score": 0.008427328483895151}]}, "pifont": {"ding": [{"caption": "\\ding{}", "snippet": "\\ding{$1}", "meta": "pifont-cmd", "score": 0.010024939515130818}]}, "ragged2e": {"RaggedRight": [{"caption": "\\RaggedRight", "snippet": "\\RaggedRight", "meta": "ragged2e-cmd", "score": 0.001021021782267457}], "justifying": [{"caption": "\\justifying", "snippet": "\\justifying", "meta": "ragged2e-cmd", "score": 0.010373702256548788}, {"caption": "\\justifying{}", "snippet": "\\justifying{$1}", "meta": "ragged2e-cmd", "score": 0.010373702256548788}], "Centering": [{"caption": "\\Centering", "snippet": "\\Centering", "meta": "ragged2e-cmd", "score": 0.00037395241488843035}], "selectfont": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "ragged2e-cmd", "score": 0.04477234122286525}]}, "rotating": {"value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "rotating-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "rotating-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "rotating-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "rotating-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "rotating-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "rotating-cmd", "score": 0.0012203054938872515}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "rotating-cmd", "score": 0.008565354665444157}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "rotating-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "rotating-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "rotating-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "rotating-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "rotating-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "rotating-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "rotating-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "rotating-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "rotating-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "rotating-cmd", "score": 0.0047181502268010085}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "rotating-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "rotating-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "rotating-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "rotating-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "rotating-cmd", "score": 0.017834153815870245}]}, "xltxtra": {"textsuperscript": [{"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "xltxtra-cmd", "score": 0.05216393882408519}], "textsubscript": [{"caption": "\\textsubscript{}", "snippet": "\\textsubscript{$1}", "meta": "xltxtra-cmd", "score": 0.058405875394131175}], "XeLaTeX": [{"caption": "\\XeLaTeX", "snippet": "\\XeLaTeX", "meta": "xltxtra-cmd", "score": 0.002009786035379175}], "TeX": [{"caption": "\\TeX", "snippet": "\\TeX", "meta": "xltxtra-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "xltxtra-cmd", "score": 0.02873756018238537}], "XeTeX": [{"caption": "\\XeTeX", "snippet": "\\XeTeX", "meta": "xltxtra-cmd", "score": 0.0010635559050357936}], "LaTeX": [{"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "xltxtra-cmd", "score": 0.23340887594065388}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "xltxtra-cmd", "score": 0.23340887594065388}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xltxtra-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xltxtra-cmd", "score": 0.2864757606289432}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "xltxtra-cmd", "score": 0.008565354665444157}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xltxtra-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xltxtra-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xltxtra-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xltxtra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xltxtra-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xltxtra-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xltxtra-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xltxtra-cmd", "score": 0.0047181502268010085}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xltxtra-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xltxtra-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xltxtra-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xltxtra-cmd", "score": 0.017834153815870245}], "RequireXeTeX": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "xltxtra-cmd", "score": 0.00021116765384691477}]}, "marvosym": {"Mundus": [{"caption": "\\Mundus", "snippet": "\\Mundus", "meta": "marvosym-cmd", "score": 0.0006349134235582933}], "Mobilefone": [{"caption": "\\Mobilefone", "snippet": "\\Mobilefone", "meta": "marvosym-cmd", "score": 0.0005432037068220953}], "Letter": [{"caption": "\\Letter", "snippet": "\\Letter", "meta": "marvosym-cmd", "score": 0.0012281130571092198}], "Telefon": [{"caption": "\\Telefon", "snippet": "\\Telefon", "meta": "marvosym-cmd", "score": 0.0003618274070138519}]}, "dcolumn": {"multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "dcolumn-cmd", "score": 0.5475496759728834}], "endtabular": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "dcolumn-cmd", "score": 0.0005078239917067089}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "dcolumn-cmd", "score": 0.008565354665444157}], "newcolumntype": [{"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "dcolumn-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "dcolumn-cmd", "score": 0.018615449342361392}], "arraybackslash": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "dcolumn-cmd", "score": 0.014532521139459619}], "tabular": [{"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "dcolumn-cmd", "score": 0.0005078239917067089}], "array": [{"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "dcolumn-cmd", "score": 2.650484574842396e-05}]}, "indentfirst": {}, "xspace": {"xspace": [{"caption": "\\xspace", "snippet": "\\xspace", "meta": "xspace-cmd", "score": 0.07560370351316588}]}, "xunicode": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xunicode-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xunicode-cmd", "score": 0.021170869458413965}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xunicode-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xunicode-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xunicode-cmd", "score": 0.0047181502268010085}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xunicode-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xunicode-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xunicode-cmd", "score": 0.004649150613625593}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xunicode-cmd", "score": 0.00530510025314411}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "xunicode-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xunicode-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xunicode-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xunicode-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xunicode-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xunicode-cmd", "score": 0.017834153815870245}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xunicode-cmd", "score": 0.00037306820619479756}]}, "csquotes": {"setquotestyle": [{"caption": "\\setquotestyle[]{}", "snippet": "\\setquotestyle[$1]{$2}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "DeclareQuoteStyle": [{"caption": "\\DeclareQuoteStyle[]{}", "snippet": "\\DeclareQuoteStyle[$1]{$2}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "csquotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "csquotes-cmd", "score": 0.021170869458413965}], "DeclareQuoteAlias": [{"caption": "\\DeclareQuoteAlias{}{}", "snippet": "\\DeclareQuoteAlias{$1}{$2}", "meta": "csquotes-cmd", "score": 0.0004906235524176374}], "quote": [{"caption": "\\quote{}", "snippet": "\\quote{$1}", "meta": "csquotes-cmd", "score": 0.030690393112264815}, {"caption": "\\quote", "snippet": "\\quote", "meta": "csquotes-cmd", "score": 0.030690393112264815}], "SetCiteCommand": [{"caption": "\\SetCiteCommand{}", "snippet": "\\SetCiteCommand{$1}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "csquotes-cmd", "score": 0.008565354665444157}], "blockquote": [{"caption": "\\blockquote{}", "snippet": "\\blockquote{$1}", "meta": "csquotes-cmd", "score": 0.00023365626458085812}], "mkcitation": [{"caption": "\\mkcitation", "snippet": "\\mkcitation", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "csquotes-cmd", "score": 0.009278344180101056}], "MakeOuterQuote": [{"caption": "\\MakeOuterQuote{}", "snippet": "\\MakeOuterQuote{$1}", "meta": "csquotes-cmd", "score": 0.0019170262157256817}], "mkbegdispquote": [{"caption": "\\mkbegdispquote", "snippet": "\\mkbegdispquote", "meta": "csquotes-cmd", "score": 4.203362017075738e-05}], "ifpunctmark": [{"caption": "\\ifpunctmark{}", "snippet": "\\ifpunctmark{$1}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}], "endquote": [{"caption": "\\endquote", "snippet": "\\endquote", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "SetBlockEnvironment": [{"caption": "\\SetBlockEnvironment{}", "snippet": "\\SetBlockEnvironment{$1}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}], "par": [{"caption": "\\par", "snippet": "\\par", "meta": "csquotes-cmd", "score": 0.41385054378501596}], "break": [{"caption": "\\break", "snippet": "\\break", "meta": "csquotes-cmd", "score": 0.016352452390960115}, {"caption": "\\break{}", "snippet": "\\break{$1}", "meta": "csquotes-cmd", "score": 0.016352452390960115}, {"caption": "\\break{}{}", "snippet": "\\break{$1}{$2}", "meta": "csquotes-cmd", "score": 0.016352452390960115}], "enquote": [{"caption": "\\enquote{}", "snippet": "\\enquote{$1}", "meta": "csquotes-cmd", "score": 0.0077432730806830915}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00037306820619479756}], "pretocmd": [{"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00028992557275763024}], "ifdefempty": [{"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 7.482069221111606e-05}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "csquotes-cmd", "score": 0.00530510025314411}], "AtBeginEnvironment": [{"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "csquotes-cmd", "score": 4.002553629215439e-05}], "apptocmd": [{"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00035805058319299113}], "string": [{"caption": "\\string", "snippet": "\\string", "meta": "csquotes-cmd", "score": 0.001042697111754002}], "ifundef": [{"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 0.00014933999190577243}], "newbool": [{"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}], "newrobustcmd": [{"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "csquotes-cmd", "score": 0.0006607703576475988}], "robustify": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "csquotes-cmd", "score": 0.002671974990314091}], "ifnumcomp": [{"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "csquotes-cmd", "score": 0.00029867998381154486}], "setbool": [{"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00023171033119130004}], "patchcmd": [{"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "csquotes-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "csquotes-cmd", "score": 0.002560998917940627}], "ifstrequal": [{"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00041192947767342225}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 0.00041192947767342225}], "preto": [{"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "csquotes-cmd", "score": 8.860754525300578e-05}], "ifdefstring": [{"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.0006796212875843042}], "csedef": [{"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00014933999190577243}], "ifbool": [{"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}]}, "xparse": {"color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xparse-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xparse-cmd", "score": 0.2864757606289432}]}, "soul": {"st": [{"caption": "\\st", "snippet": "\\st", "meta": "soul-cmd", "score": 0.004652662833362787}, {"caption": "\\st{}", "snippet": "\\st{$1}", "meta": "soul-cmd", "score": 0.004652662833362787}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "soul-cmd", "score": 0.008565354665444157}], "hl": [{"caption": "\\hl{}", "snippet": "\\hl{$1}", "meta": "soul-cmd", "score": 0.03421486301062431}], "so": [{"caption": "\\so", "snippet": "\\so", "meta": "soul-cmd", "score": 0.004308800134587786}, {"caption": "\\so{}", "snippet": "\\so{$1}", "meta": "soul-cmd", "score": 0.004308800134587786}], "DeclareRobustCommand": [{"caption": "\\DeclareRobustCommand{}{}", "snippet": "\\DeclareRobustCommand{$1}{$2}", "meta": "soul-cmd", "score": 0.0010373158471650705}, {"caption": "\\DeclareRobustCommand{}[]{}", "snippet": "\\DeclareRobustCommand{$1}[$2]{$3}", "meta": "soul-cmd", "score": 0.0010373158471650705}], "sodef": [{"caption": "\\sodef", "snippet": "\\sodef", "meta": "soul-cmd", "score": 0.0017045357696831268}], "def": [{"caption": "\\def", "snippet": "\\def", "meta": "soul-cmd", "score": 0.21182409198900135}], "sethlcolor": [{"caption": "\\sethlcolor{}", "snippet": "\\sethlcolor{$1}", "meta": "soul-cmd", "score": 0.01970230898277056}]}, "comment": {"includecomment": [{"caption": "\\includecomment{}", "snippet": "\\includecomment{$1}", "meta": "comment-cmd", "score": 8.21804444236254e-05}], "specialcomment": [{"caption": "\\specialcomment{}{}{}", "snippet": "\\specialcomment{$1}{$2}{$3}", "meta": "comment-cmd", "score": 9.120209837787948e-05}]}, "changepage": {}, "algorithm2e": {"SetAlgoVlined": [{"caption": "\\SetAlgoVlined", "snippet": "\\SetAlgoVlined", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "SetAlCapNameFnt": [{"caption": "\\SetAlCapNameFnt{}", "snippet": "\\SetAlCapNameFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}], "DontPrintSemicolon": [{"caption": "\\DontPrintSemicolon", "snippet": "\\DontPrintSemicolon", "meta": "algorithm2e-cmd", "score": 0.0010702472025320054}], "IncMargin": [{"caption": "\\IncMargin{}", "snippet": "\\IncMargin{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}], "algorithmcfname": [{"caption": "\\algorithmcfname", "snippet": "\\algorithmcfname", "meta": "algorithm2e-cmd", "score": 0.0024445413067013134}], "SetKwFunction": [{"caption": "\\SetKwFunction{}{}", "snippet": "\\SetKwFunction{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0015332307832994817}], "BlankLine": [{"caption": "\\BlankLine", "snippet": "\\BlankLine", "meta": "algorithm2e-cmd", "score": 0.005049617303688214}], "SetAlgoCaptionSeparator": [{"caption": "\\SetAlgoCaptionSeparator{}", "snippet": "\\SetAlgoCaptionSeparator{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "SetNlSkip": [{"caption": "\\SetNlSkip{}", "snippet": "\\SetNlSkip{$1}", "meta": "algorithm2e-cmd", "score": 8.159712334237484e-06}], "Indp": [{"caption": "\\Indp", "snippet": "\\Indp", "meta": "algorithm2e-cmd", "score": 6.88491381424765e-05}], "SetAlCapSkip": [{"caption": "\\SetAlCapSkip{}", "snippet": "\\SetAlCapSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.0006213942502400296}], "chapter": [{"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "algorithm2e-cmd", "score": 0.42208896442237664}], "SetKwInOut": [{"caption": "\\SetKwInOut{}{}", "snippet": "\\SetKwInOut{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0017021978326807814}], "AlCapNameSty": [{"caption": "\\AlCapNameSty{}", "snippet": "\\AlCapNameSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}], "FuncSty": [{"caption": "\\FuncSty{}", "snippet": "\\FuncSty{$1}", "meta": "algorithm2e-cmd", "score": 7.576875738934807e-05}], "SetKwData": [{"caption": "\\SetKwData{}{}", "snippet": "\\SetKwData{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.00235652682860263}], "SetKwProg": [{"caption": "\\SetKwProg{}{}{}{}", "snippet": "\\SetKwProg{$1}{$2}{$3}{$4}", "meta": "algorithm2e-cmd", "score": 0.0008518783278391971}], "renewcommand": [{"caption": "\\renewcommand{}{}", "snippet": "\\renewcommand{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.326778302446379}, {"caption": "\\renewcommand", "snippet": "\\renewcommand", "meta": "algorithm2e-cmd", "score": 0.326778302446379}], "LinesNumbered": [{"caption": "\\LinesNumbered", "snippet": "\\LinesNumbered", "meta": "algorithm2e-cmd", "score": 0.000162125616653719}], "SetKwIF": [{"caption": "\\SetKwIF{}{}{}{}{}{}{}{}", "snippet": "\\SetKwIF{$1}{$2}{$3}{$4}{$5}{$6}{$7}{$8}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "Indm": [{"caption": "\\Indm", "snippet": "\\Indm", "meta": "algorithm2e-cmd", "score": 6.88491381424765e-05}], "SetAlCapFnt": [{"caption": "\\SetAlCapFnt{}", "snippet": "\\SetAlCapFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}], "SetAlCapHSkip": [{"caption": "\\SetAlCapHSkip{}", "snippet": "\\SetAlCapHSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}], "SetAlgoLined": [{"caption": "\\SetAlgoLined", "snippet": "\\SetAlgoLined", "meta": "algorithm2e-cmd", "score": 0.0017151361342403852}], "RestyleAlgo": [{"caption": "\\RestyleAlgo{}", "snippet": "\\RestyleAlgo{$1}", "meta": "algorithm2e-cmd", "score": 0.00019243311960945823}], "listofalgorithms": [{"caption": "\\listofalgorithms", "snippet": "\\listofalgorithms", "meta": "algorithm2e-cmd", "score": 0.0012576983422794912}], "theAlgoLine": [{"caption": "\\theAlgoLine{}", "snippet": "\\theAlgoLine{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "nllabel": [{"caption": "\\nllabel{}", "snippet": "\\nllabel{$1}", "meta": "algorithm2e-cmd", "score": 0.0001844460347791443}], "SetAlFnt": [{"caption": "\\SetAlFnt{}", "snippet": "\\SetAlFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024446198714390757}], "AlCapNameFnt": [{"caption": "\\AlCapNameFnt", "snippet": "\\AlCapNameFnt", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}], "nl": [{"caption": "\\nl", "snippet": "\\nl", "meta": "algorithm2e-cmd", "score": 0.00021968456284485532}], "SetAlgoSkip": [{"caption": "\\SetAlgoSkip{}", "snippet": "\\SetAlgoSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.00017454032258926576}], "SetAlgoInsideSkip": [{"caption": "\\SetAlgoInsideSkip{}", "snippet": "\\SetAlgoInsideSkip{$1}", "meta": "algorithm2e-cmd", "score": 4.5812360816321294e-05}], "ArgSty": [{"caption": "\\ArgSty{}", "snippet": "\\ArgSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}], "DataSty": [{"caption": "\\DataSty{}", "snippet": "\\DataSty{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "algorithmautorefname": [{"caption": "\\algorithmautorefname", "snippet": "\\algorithmautorefname", "meta": "algorithm2e-cmd", "score": 2.0085955839419213e-05}], "SetKwBlock": [{"caption": "\\SetKwBlock{}{}{}", "snippet": "\\SetKwBlock{$1}{$2}{$3}", "meta": "algorithm2e-cmd", "score": 0.000981463850523159}, {"caption": "\\SetKwBlock{}{}", "snippet": "\\SetKwBlock{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.000981463850523159}], "SetCommentSty": [{"caption": "\\SetCommentSty{}", "snippet": "\\SetCommentSty{$1}", "meta": "algorithm2e-cmd", "score": 0.0001778112853266571}], "listalgorithmcfname": [{"caption": "\\listalgorithmcfname", "snippet": "\\listalgorithmcfname", "meta": "algorithm2e-cmd", "score": 1.5075186740106946e-05}], "SetKwFor": [{"caption": "\\SetKwFor{}{}{}{}", "snippet": "\\SetKwFor{$1}{$2}{$3}{$4}", "meta": "algorithm2e-cmd", "score": 0.00010699539949594301}], "SetKwRepeat": [{"caption": "\\SetKwRepeat{}{}{}", "snippet": "\\SetKwRepeat{$1}{$2}{$3}", "meta": "algorithm2e-cmd", "score": 6.110202388233705e-05}], "LinesNotNumbered": [{"caption": "\\LinesNotNumbered", "snippet": "\\LinesNotNumbered", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}], "AlCapFnt": [{"caption": "\\AlCapFnt", "snippet": "\\AlCapFnt", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}], "SetAlgoNoEnd": [{"caption": "\\SetAlgoNoEnd", "snippet": "\\SetAlgoNoEnd", "meta": "algorithm2e-cmd", "score": 0.00015722499147840545}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "algorithm2e-cmd", "score": 0.008565354665444157}], "SetAlgoNoLine": [{"caption": "\\SetAlgoNoLine", "snippet": "\\SetAlgoNoLine", "meta": "algorithm2e-cmd", "score": 0.00015722499147840545}], "SetKw": [{"caption": "\\SetKw{}{}", "snippet": "\\SetKw{$1}{$2}", "meta": "algorithm2e-cmd", "score": 9.292434841280213e-05}], "CommentSty": [{"caption": "\\CommentSty{}", "snippet": "\\CommentSty{$1}", "meta": "algorithm2e-cmd", "score": 0.0001111448631633176}], "AlCapSty": [{"caption": "\\AlCapSty{}", "snippet": "\\AlCapSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}], "xspace": [{"caption": "\\xspace", "snippet": "\\xspace", "meta": "algorithm2e-cmd", "score": 0.07560370351316588}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithm2e-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithm2e-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithm2e-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithm2e-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithm2e-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0012203054938872515}]}, "mathrsfs": {}, "tocbibind": {"indexname": [{"caption": "\\indexname", "snippet": "\\indexname", "meta": "tocbibind-cmd", "score": 0.0007544109314450072}], "settocbibname": [{"caption": "\\settocbibname{}", "snippet": "\\settocbibname{$1}", "meta": "tocbibind-cmd", "score": 0.00010668677119599426}], "listfigurename": [{"caption": "\\listfigurename", "snippet": "\\listfigurename", "meta": "tocbibind-cmd", "score": 0.0034407237779350256}], "tableofcontents": [{"caption": "\\tableofcontents", "snippet": "\\tableofcontents", "meta": "tocbibind-cmd", "score": 0.1332003220455613}], "contentsname": [{"caption": "\\contentsname", "snippet": "\\contentsname", "meta": "tocbibind-cmd", "score": 0.01020329219345333}, {"caption": "\\contentsname{}", "snippet": "\\contentsname{$1}", "meta": "tocbibind-cmd", "score": 0.01020329219345333}], "listoffigures": [{"caption": "\\listoffigures", "snippet": "\\listoffigures", "meta": "tocbibind-cmd", "score": 0.03447318897846567}], "tocchapter": [{"caption": "\\tocchapter", "snippet": "\\tocchapter", "meta": "tocbibind-cmd", "score": 0.00016023188758771694}], "listoftables": [{"caption": "\\listoftables", "snippet": "\\listoftables", "meta": "tocbibind-cmd", "score": 0.02104656820469027}], "tocbibname": [{"caption": "\\tocbibname", "snippet": "\\tocbibname", "meta": "tocbibind-cmd", "score": 0.0020762574479507175}], "tocfile": [{"caption": "\\tocfile{}{}", "snippet": "\\tocfile{$1}{$2}", "meta": "tocbibind-cmd", "score": 0.00016023188758771694}]}, "pgfplots": {"setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfplots-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfplots-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfplots-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfplots-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfplots-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfplots-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfplots-cmd", "score": 0.0047181502268010085}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplots-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfplots-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfplots-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfplots-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.017834153815870245}], "textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.20852115286477566}], "definecolors": [{"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfplots-cmd", "score": 0.0003209840085766927}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.00926923425734719}], "colorlet": [{"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.03654388342026623}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfplots-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfplots-cmd", "score": 0.2864757606289432}], "rowcolors": [{"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.0014120076489723356}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.1690663439295532}], "selectcolormodel": [{"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfplots-cmd", "score": 0.000264339771769041}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfplots-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.0008147200475678891}]}, "lastpage": {"string": [{"caption": "\\string", "snippet": "\\string", "meta": "lastpage-cmd", "score": 0.001042697111754002}]}, "graphics": {"reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "graphics-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "graphics-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "graphics-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "graphics-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "graphics-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "graphics-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphics-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphics-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphics-cmd", "score": 0.0047181502268010085}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "graphics-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "graphics-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "graphics-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "graphics-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "graphics-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "graphics-cmd", "score": 0.017834153815870245}]}, "algorithmic": {"algorithmicwhile": [{"caption": "\\algorithmicwhile", "snippet": "\\algorithmicwhile", "meta": "algorithmic-cmd", "score": 0.0005769483780443573}, {"caption": "\\algorithmicwhile{}", "snippet": "\\algorithmicwhile{$1}", "meta": "algorithmic-cmd", "score": 0.0005769483780443573}], "algorithmicor": [{"caption": "\\algorithmicor", "snippet": "\\algorithmicor", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}], "REPEAT": [{"caption": "\\REPEAT", "snippet": "\\REPEAT", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}], "algorithmicrepeat": [{"caption": "\\algorithmicrepeat", "snippet": "\\algorithmicrepeat", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}], "ELSE": [{"caption": "\\ELSE", "snippet": "\\ELSE", "meta": "algorithmic-cmd", "score": 0.0007599864146830139}], "IF": [{"caption": "\\IF{}", "snippet": "\\IF{$1}", "meta": "algorithmic-cmd", "score": 0.0036985887706967417}], "ENDIF": [{"caption": "\\ENDIF", "snippet": "\\ENDIF", "meta": "algorithmic-cmd", "score": 0.003585213685098552}], "FALSE": [{"caption": "\\FALSE", "snippet": "\\FALSE", "meta": "algorithmic-cmd", "score": 3.34222699937868e-05}], "ENSURE": [{"caption": "\\ENSURE", "snippet": "\\ENSURE", "meta": "algorithmic-cmd", "score": 0.0013188761425395954}], "algorithmicrequire": [{"caption": "\\algorithmicrequire", "snippet": "\\algorithmicrequire", "meta": "algorithmic-cmd", "score": 0.004751598472180266}], "algorithmicuntil": [{"caption": "\\algorithmicuntil", "snippet": "\\algorithmicuntil", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}], "FORALL": [{"caption": "\\FORALL{}", "snippet": "\\FORALL{$1}", "meta": "algorithmic-cmd", "score": 0.0003533673112726266}], "RETURN": [{"caption": "\\RETURN", "snippet": "\\RETURN", "meta": "algorithmic-cmd", "score": 0.0013054907995767408}], "COMMENT": [{"caption": "\\COMMENT", "snippet": "\\COMMENT", "meta": "algorithmic-cmd", "score": 0.00025669572555354604}, {"caption": "\\COMMENT{}", "snippet": "\\COMMENT{$1}", "meta": "algorithmic-cmd", "score": 0.00025669572555354604}], "ENDFOR": [{"caption": "\\ENDFOR", "snippet": "\\ENDFOR", "meta": "algorithmic-cmd", "score": 0.004428141530092572}], "REQUIRE": [{"caption": "\\REQUIRE", "snippet": "\\REQUIRE", "meta": "algorithmic-cmd", "score": 0.001870681168192269}], "algorithmicend": [{"caption": "\\algorithmicend", "snippet": "\\algorithmicend", "meta": "algorithmic-cmd", "score": 0.0011128218085672747}, {"caption": "\\algorithmicend{}", "snippet": "\\algorithmicend{$1}", "meta": "algorithmic-cmd", "score": 0.0011128218085672747}], "algorithmicif": [{"caption": "\\algorithmicif", "snippet": "\\algorithmicif", "meta": "algorithmic-cmd", "score": 0.00039654130753044966}, {"caption": "\\algorithmicif{}", "snippet": "\\algorithmicif{$1}", "meta": "algorithmic-cmd", "score": 0.00039654130753044966}], "algorithmicreturn": [{"caption": "\\algorithmicreturn{}", "snippet": "\\algorithmicreturn{$1}", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\algorithmicreturn", "snippet": "\\algorithmicreturn", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}], "algorithmicdo": [{"caption": "\\algorithmicdo", "snippet": "\\algorithmicdo", "meta": "algorithmic-cmd", "score": 0.0005655570358533174}, {"caption": "\\algorithmicdo{}", "snippet": "\\algorithmicdo{$1}", "meta": "algorithmic-cmd", "score": 0.0005655570358533174}], "UNTIL": [{"caption": "\\UNTIL", "snippet": "\\UNTIL", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}, {"caption": "\\UNTIL{}", "snippet": "\\UNTIL{$1}", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}], "algorithmicfor": [{"caption": "\\algorithmicfor", "snippet": "\\algorithmicfor", "meta": "algorithmic-cmd", "score": 0.0005681785898943757}, {"caption": "\\algorithmicfor{}", "snippet": "\\algorithmicfor{$1}", "meta": "algorithmic-cmd", "score": 0.0005681785898943757}], "TRUE": [{"caption": "\\TRUE", "snippet": "\\TRUE", "meta": "algorithmic-cmd", "score": 0.0001336890799751472}], "algorithmicforall": [{"caption": "\\algorithmicforall{}", "snippet": "\\algorithmicforall{$1}", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\algorithmicforall", "snippet": "\\algorithmicforall", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}], "algorithmicand": [{"caption": "\\algorithmicand", "snippet": "\\algorithmicand", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}], "ENDWHILE": [{"caption": "\\ENDWHILE", "snippet": "\\ENDWHILE", "meta": "algorithmic-cmd", "score": 0.00047037943460091465}], "AND": [{"caption": "\\AND", "snippet": "\\AND", "meta": "algorithmic-cmd", "score": 6.401730289932545e-05}], "STATE": [{"caption": "\\STATE", "snippet": "\\STATE", "meta": "algorithmic-cmd", "score": 0.0266684860947573}], "algorithmiccomment": [{"caption": "\\algorithmiccomment", "snippet": "\\algorithmiccomment", "meta": "algorithmic-cmd", "score": 0.00021737766481978388}], "algorithmicensure": [{"caption": "\\algorithmicensure", "snippet": "\\algorithmicensure", "meta": "algorithmic-cmd", "score": 0.003439482525198322}], "ELSIF": [{"caption": "\\ELSIF{}", "snippet": "\\ELSIF{$1}", "meta": "algorithmic-cmd", "score": 0.0001991613148371481}], "algsetup": [{"caption": "\\algsetup{}", "snippet": "\\algsetup{$1}", "meta": "algorithmic-cmd", "score": 0.00012872796177294446}], "algorithmicthen": [{"caption": "\\algorithmicthen{}", "snippet": "\\algorithmicthen{$1}", "meta": "algorithmic-cmd", "score": 0.00032476571672371697}, {"caption": "\\algorithmicthen", "snippet": "\\algorithmicthen", "meta": "algorithmic-cmd", "score": 0.00032476571672371697}], "FOR": [{"caption": "\\FOR{}", "snippet": "\\FOR{$1}", "meta": "algorithmic-cmd", "score": 0.004074774218819945}], "OR": [{"caption": "\\OR", "snippet": "\\OR", "meta": "algorithmic-cmd", "score": 6.401730289932545e-05}], "WHILE": [{"caption": "\\WHILE{}", "snippet": "\\WHILE{$1}", "meta": "algorithmic-cmd", "score": 0.00047037943460091465}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithmic-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithmic-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithmic-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithmic-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithmic-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithmic-cmd", "score": 0.0012203054938872515}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "algorithmic-cmd", "score": 0.00037306820619479756}]}, "lineno": {"modulolinenumbers": [{"caption": "\\modulolinenumbers[]", "snippet": "\\modulolinenumbers[$1]", "meta": "lineno-cmd", "score": 0.0027194991933605197}], "pagewiselinenumbers": [{"caption": "\\pagewiselinenumbers", "snippet": "\\pagewiselinenumbers", "meta": "lineno-cmd", "score": 0.00016870831850106035}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "lineno-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "lineno-cmd", "score": 0.021170869458413965}], "linenomath": [{"caption": "\\linenomath", "snippet": "\\linenomath", "meta": "lineno-cmd", "score": 1.4517338420208715e-05}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "lineno-cmd", "score": 0.008565354665444157}], "filedate": [{"caption": "\\filedate{}", "snippet": "\\filedate{$1}", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\filedate", "snippet": "\\filedate", "meta": "lineno-cmd", "score": 0.000578146635331119}], "linenumberfont": [{"caption": "\\linenumberfont{}", "snippet": "\\linenumberfont{$1}", "meta": "lineno-cmd", "score": 0.0001811784338695797}], "endlinenomath": [{"caption": "\\endlinenomath", "snippet": "\\endlinenomath", "meta": "lineno-cmd", "score": 1.4517338420208715e-05}], "path": [{"caption": "\\path", "snippet": "\\path", "meta": "lineno-cmd", "score": 0.028187257208654337}, {"caption": "\\path[]", "snippet": "\\path[$1]", "meta": "lineno-cmd", "score": 0.028187257208654337}, {"caption": "\\path{}", "snippet": "\\path{$1}", "meta": "lineno-cmd", "score": 0.028187257208654337}], "nolinenumbers": [{"caption": "\\nolinenumbers", "snippet": "\\nolinenumbers", "meta": "lineno-cmd", "score": 0.0009805246614299932}], "fileversion": [{"caption": "\\fileversion{}", "snippet": "\\fileversion{$1}", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\fileversion", "snippet": "\\fileversion", "meta": "lineno-cmd", "score": 0.000578146635331119}], "linenumbers": [{"caption": "\\linenumbers", "snippet": "\\linenumbers", "meta": "lineno-cmd", "score": 0.004687680659497865}]}, "mathptmx": {"rmdefault": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "mathptmx-cmd", "score": 0.0012870328701184489}], "big": [{"caption": "\\big", "snippet": "\\big", "meta": "mathptmx-cmd", "score": 0.056146864111818975}], "Big": [{"caption": "\\Big", "snippet": "\\Big", "meta": "mathptmx-cmd", "score": 0.05036999011667452}], "bigg": [{"caption": "\\bigg", "snippet": "\\bigg", "meta": "mathptmx-cmd", "score": 0.043270542864372256}]}, "fullpage": {}, "todonotes": {"todo": [{"caption": "\\todo{}", "snippet": "\\todo{$1}", "meta": "todonotes-cmd", "score": 0.04115074278362878}, {"caption": "\\todo[]{}", "snippet": "\\todo[$1]{$2}", "meta": "todonotes-cmd", "score": 0.04115074278362878}, {"caption": "\\todo", "snippet": "\\todo", "meta": "todonotes-cmd", "score": 0.04115074278362878}], "phantomsection": [{"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "todonotes-cmd", "score": 0.0174633138331273}], "missingfigure": [{"caption": "\\missingfigure[]{}", "snippet": "\\missingfigure[$1]{$2}", "meta": "todonotes-cmd", "score": 0.001558719179721163}, {"caption": "\\missingfigure", "snippet": "\\missingfigure", "meta": "todonotes-cmd", "score": 0.001558719179721163}], "listoftodos": [{"caption": "\\listoftodos", "snippet": "\\listoftodos", "meta": "todonotes-cmd", "score": 0.0005325975940754609}, {"caption": "\\listoftodos[]", "snippet": "\\listoftodos[$1]", "meta": "todonotes-cmd", "score": 0.0005325975940754609}], "todototoc": [{"caption": "\\todototoc", "snippet": "\\todototoc", "meta": "todonotes-cmd", "score": 0.000325977535138643}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "todonotes-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "todonotes-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "todonotes-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "todonotes-cmd", "score": 0.004649150613625593}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "todonotes-cmd", "score": 0.021170869458413965}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "todonotes-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "todonotes-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "todonotes-cmd", "score": 0.0047181502268010085}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "todonotes-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "todonotes-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "todonotes-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "todonotes-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.017834153815870245}], "value": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "todonotes-cmd", "score": 0.01590723355124104}], "newboolean": [{"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "todonotes-cmd", "score": 0.0009170966832172938}], "ifthenelse": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "todonotes-cmd", "score": 0.009331077109224957}], "boolean": [{"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "todonotes-cmd", "score": 0.0018957469739775527}], "setboolean": [{"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "todonotes-cmd", "score": 0.0012203054938872515}], "textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "todonotes-cmd", "score": 0.20852115286477566}], "definecolors": [{"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "todonotes-cmd", "score": 0.0003209840085766927}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.00926923425734719}], "colorlet": [{"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "todonotes-cmd", "score": 0.03654388342026623}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "todonotes-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "todonotes-cmd", "score": 0.2864757606289432}], "rowcolors": [{"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.0014120076489723356}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.1690663439295532}], "selectcolormodel": [{"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "todonotes-cmd", "score": 0.000264339771769041}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "todonotes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "todonotes-cmd", "score": 0.0008147200475678891}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "todonotes-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "todonotes-cmd", "score": 0.3544684201748615}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "todonotes-cmd", "score": 0.010241823778997489}], "addtolength": [{"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "todonotes-cmd", "score": 0.028951021040407424}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "todonotes-cmd", "score": 0.028951021040407424}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "todonotes-cmd", "score": 0.0030745841706804776}], "setcounter": [{"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "todonotes-cmd", "score": 0.10067834885859363}]}, "ulem": {"iff": [{"caption": "\\iff", "snippet": "\\iff", "meta": "ulem-cmd", "score": 0.004209937150980285}], "MakeRobust": [{"caption": "\\MakeRobust", "snippet": "\\MakeRobust", "meta": "ulem-cmd", "score": 3.140504277052775e-05}], "hfill": [{"caption": "\\hfill", "snippet": "\\hfill", "meta": "ulem-cmd", "score": 0.20582475394736371}], "hfil": [{"caption": "\\hfil", "snippet": "\\hfil", "meta": "ulem-cmd", "score": 0.006880789969115855}], "markoverwith": [{"caption": "\\markoverwith{}", "snippet": "\\markoverwith{$1}", "meta": "ulem-cmd", "score": 0.0004888431085285657}], "useunder": [{"caption": "\\useunder{}{}{}", "snippet": "\\useunder{$1}{$2}{$3}", "meta": "ulem-cmd", "score": 0.0013185833851097916}], "sout": [{"caption": "\\sout{}", "snippet": "\\sout{$1}", "meta": "ulem-cmd", "score": 0.0010443313503631364}, {"caption": "\\sout", "snippet": "\\sout", "meta": "ulem-cmd", "score": 0.0010443313503631364}], "hss": [{"caption": "\\hss", "snippet": "\\hss", "meta": "ulem-cmd", "score": 0.0020627882815078768}], "uline": [{"caption": "\\uline{}", "snippet": "\\uline{$1}", "meta": "ulem-cmd", "score": 0.005956273219192909}, {"caption": "\\uline", "snippet": "\\uline", "meta": "ulem-cmd", "score": 0.005956273219192909}], "normalem": [{"caption": "\\normalem", "snippet": "\\normalem", "meta": "ulem-cmd", "score": 0.00015564484081028078}], "ULon": [{"caption": "\\ULon", "snippet": "\\ULon", "meta": "ulem-cmd", "score": 0.0004888431085285657}]}, "gensymb": {"celsius": [{"caption": "\\celsius", "snippet": "\\celsius", "meta": "gensymb-cmd", "score": 0.0010806983851157788}], "ohm": [{"caption": "\\ohm", "snippet": "\\ohm", "meta": "gensymb-cmd", "score": 0.0038146685721293138}], "degree": [{"caption": "\\degree", "snippet": "\\degree", "meta": "gensymb-cmd", "score": 0.04472844133716796}], "micro": [{"caption": "\\micro", "snippet": "\\micro", "meta": "gensymb-cmd", "score": 0.011051971930487929}]}, "siunitx": {"num": [{"caption": "\\num{}", "snippet": "\\num{$1}", "meta": "siunitx-cmd", "score": 0.0005077454796577224}, {"caption": "\\num[]{}", "snippet": "\\num[$1]{$2}", "meta": "siunitx-cmd", "score": 0.0005077454796577224}], "SI": [{"caption": "\\SI{}{}", "snippet": "\\SI{$1}{$2}", "meta": "siunitx-cmd", "score": 0.04233098901537305}], "ang": [{"caption": "\\ang{}", "snippet": "\\ang{$1}", "meta": "siunitx-cmd", "score": 0.00026216419341458844}], "DeclareSIUnit": [{"caption": "\\DeclareSIUnit{}{}", "snippet": "\\DeclareSIUnit{$1}{$2}", "meta": "siunitx-cmd", "score": 0.00017911905960739648}, {"caption": "\\DeclareSIUnit", "snippet": "\\DeclareSIUnit", "meta": "siunitx-cmd", "score": 0.00017911905960739648}], "si": [{"caption": "\\si{}", "snippet": "\\si{$1}", "meta": "siunitx-cmd", "score": 0.015042052475411008}], "sisetup": [{"caption": "\\sisetup{}", "snippet": "\\sisetup{$1}", "meta": "siunitx-cmd", "score": 0.0011875061630332172}], "SIrange": [{"caption": "\\SIrange{}{}{}", "snippet": "\\SIrange{$1}{$2}{$3}", "meta": "siunitx-cmd", "score": 0.0004920776847142836}, {"caption": "\\SIrange[]{}{}{}", "snippet": "\\SIrange[$1]{$2}{$3}{$4}", "meta": "siunitx-cmd", "score": 0.0004920776847142836}], "SIlist": [{"caption": "\\SIlist{}{}", "snippet": "\\SIlist{$1}{$2}", "meta": "siunitx-cmd", "score": 2.5005836362206937e-05}], "multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "siunitx-cmd", "score": 0.5475496759728834}], "endtabular": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "siunitx-cmd", "score": 0.0005078239917067089}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "siunitx-cmd", "score": 0.008565354665444157}], "newcolumntype": [{"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "siunitx-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "siunitx-cmd", "score": 0.018615449342361392}], "arraybackslash": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "siunitx-cmd", "score": 0.014532521139459619}], "tabular": [{"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "siunitx-cmd", "score": 0.0005078239917067089}], "array": [{"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "siunitx-cmd", "score": 2.650484574842396e-05}], "text": [{"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "siunitx-cmd", "score": 0.36085779561541087}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "siunitx-cmd", "score": 0.010241823778997489}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "siunitx-cmd", "score": 0.0030745841706804776}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "siunitx-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "siunitx-cmd", "score": 0.2864757606289432}], "do": [{"caption": "\\do", "snippet": "\\do", "meta": "siunitx-cmd", "score": 0.009278344180101056}], "frenchspacing": [{"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "siunitx-cmd", "score": 0.0063276692758974925}]}, "adjustbox": {"setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "adjustbox-cmd", "score": 0.3544684201748615}], "adjustbox": [{"caption": "\\adjustbox{}{}", "snippet": "\\adjustbox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.002008185536556013}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "adjustbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "adjustbox-cmd", "score": 0.021170869458413965}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.00037306820619479756}], "reflectbox": [{"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "adjustbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "adjustbox-cmd", "score": 0.0005981923692899367}], "DeclareGraphicsRule": [{"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "adjustbox-cmd", "score": 0.004649150613625593}], "noexpand": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "adjustbox-cmd", "score": 0.00530510025314411}], "rotatebox": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "adjustbox-cmd", "score": 0.0047181502268010085}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "adjustbox-cmd", "score": 0.0047181502268010085}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "adjustbox-cmd", "score": 0.008565354665444157}], "graphicspath": [{"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "adjustbox-cmd", "score": 0.09973951908678011}], "DeclareGraphicsExtensions": [{"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "adjustbox-cmd", "score": 0.0055519509468004175}], "scalebox": [{"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.016003208539742346}], "includegraphics": [{"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "adjustbox-cmd", "score": 1.4613076335483517}], "resizebox": [{"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "adjustbox-cmd", "score": 0.017834153815870245}]}, "moderncvstyleclassic": {}, "tweaklist": {}, "moderncvcompatibility": {"section": [{"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "moderncvcompatibility-cmd", "score": 3.0970217854204676}], "cvline": [{"caption": "\\cvline{}{}", "snippet": "\\cvline{$1}{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.007378490468121007}], "moderncvtheme": [{"caption": "\\moderncvtheme[]{}", "snippet": "\\moderncvtheme[$1]{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.002355125248305291}, {"caption": "\\moderncvtheme{}", "snippet": "\\moderncvtheme{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.002355125248305291}], "familyname": [{"caption": "\\familyname{}", "snippet": "\\familyname{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.0070031590875754435}], "cvitem": [{"caption": "\\cvitem{}{}", "snippet": "\\cvitem{$1}{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.19605476980016281}], "phone": [{"caption": "\\phone[]{}", "snippet": "\\phone[$1]{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.09602264063533228}], "mobile": [{"caption": "\\mobile{}", "snippet": "\\mobile{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.022907406369946367}], "firstname": [{"caption": "\\firstname{}", "snippet": "\\firstname{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.0070031590875754435}], "moderncvstyle": [{"caption": "\\moderncvstyle{}", "snippet": "\\moderncvstyle{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.09378844125415692}], "cvlanguage": [{"caption": "\\cvlanguage{}{}{}", "snippet": "\\cvlanguage{$1}{$2}{$3}", "meta": "moderncvcompatibility-cmd", "score": 0.00832363305853651}], "maketitle": [{"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "moderncvcompatibility-cmd", "score": 0.7504150683640368}]}, "collection": {}, "helvet": {"sfdefault": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "helvet-cmd", "score": 0.008427328483895151}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "helvet-cmd", "score": 0.008427328483895151}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "helvet-cmd", "score": 0.00037306820619479756}]}, "placeins": {"expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "placeins-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "placeins-cmd", "score": 0.021170869458413965}], "FloatBarrier": [{"caption": "\\FloatBarrier", "snippet": "\\FloatBarrier", "meta": "placeins-cmd", "score": 0.015841933780270347}]}, "colortbl": {"multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.5475496759728834}], "hline": [{"caption": "\\hline", "snippet": "\\hline", "meta": "colortbl-cmd", "score": 1.325437361340998}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "colortbl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "colortbl-cmd", "score": 0.021170869458413965}], "cellcolor": [{"caption": "\\cellcolor[]{}", "snippet": "\\cellcolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.11068275858524645}, {"caption": "\\cellcolor{}", "snippet": "\\cellcolor{$1}", "meta": "colortbl-cmd", "score": 0.11068275858524645}], "arrayrulecolor": [{"caption": "\\arrayrulecolor{}", "snippet": "\\arrayrulecolor{$1}", "meta": "colortbl-cmd", "score": 0.008538501902241319}, {"caption": "\\arrayrulecolor[]{}", "snippet": "\\arrayrulecolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.008538501902241319}], "rowcolor": [{"caption": "\\rowcolor{}", "snippet": "\\rowcolor{$1}", "meta": "colortbl-cmd", "score": 0.05564476491638024}, {"caption": "\\rowcolor[]{}", "snippet": "\\rowcolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.05564476491638024}], "endtabular": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "colortbl-cmd", "score": 0.0005078239917067089}], "csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "colortbl-cmd", "score": 0.008565354665444157}], "newcolumntype": [{"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "colortbl-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "colortbl-cmd", "score": 0.018615449342361392}], "arraybackslash": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "colortbl-cmd", "score": 0.014532521139459619}], "tabular": [{"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "colortbl-cmd", "score": 0.0005078239917067089}], "array": [{"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "colortbl-cmd", "score": 2.650484574842396e-05}], "textcolor": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "colortbl-cmd", "score": 0.20852115286477566}], "fcolorbox": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.00926923425734719}], "colorbox": [{"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "colortbl-cmd", "score": 0.029302172361548254}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "colortbl-cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "colortbl-cmd", "score": 0.2864757606289432}], "definecolor": [{"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.1690663439295532}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "colortbl-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "colortbl-cmd", "score": 0.0008147200475678891}]}, "appendix": {"addcontentsline": [{"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "appendix-cmd", "score": 0.0750300331236939}], "phantomsection": [{"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "appendix-cmd", "score": 0.0174633138331273}], "thesection": [{"caption": "\\thesection", "snippet": "\\thesection", "meta": "appendix-cmd", "score": 0.011068001821299831}, {"caption": "\\thesection{}", "snippet": "\\thesection{$1}", "meta": "appendix-cmd", "score": 0.011068001821299831}], "thesubsection": [{"caption": "\\thesubsection", "snippet": "\\thesubsection", "meta": "appendix-cmd", "score": 0.004364729212023423}], "appendixtocname": [{"caption": "\\appendixtocname", "snippet": "\\appendixtocname", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\appendixtocname{}", "snippet": "\\appendixtocname{$1}", "meta": "appendix-cmd", "score": 0.0005082989114039268}], "appendixname": [{"caption": "\\appendixname", "snippet": "\\appendixname", "meta": "appendix-cmd", "score": 0.006491295958752496}, {"caption": "\\appendixname{}", "snippet": "\\appendixname{$1}", "meta": "appendix-cmd", "score": 0.006491295958752496}], "thechapter": [{"caption": "\\thechapter", "snippet": "\\thechapter", "meta": "appendix-cmd", "score": 0.0118211905833899}], "appendixpage": [{"caption": "\\appendixpage", "snippet": "\\appendixpage", "meta": "appendix-cmd", "score": 0.0003193786370376004}, {"caption": "\\appendixpage{}", "snippet": "\\appendixpage{$1}", "meta": "appendix-cmd", "score": 0.0003193786370376004}], "sectionmark": [{"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "appendix-cmd", "score": 0.005008938879210868}], "appendixpagename": [{"caption": "\\appendixpagename", "snippet": "\\appendixpagename", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\appendixpagename{}", "snippet": "\\appendixpagename{$1}", "meta": "appendix-cmd", "score": 0.0005082989114039268}]}, "supertabular": {"tabletail": [{"caption": "\\tabletail{}", "snippet": "\\tabletail{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}], "tablehead": [{"caption": "\\tablehead{}", "snippet": "\\tablehead{$1}", "meta": "supertabular-cmd", "score": 0.002940437317353234}], "tablelasttail": [{"caption": "\\tablelasttail{}", "snippet": "\\tablelasttail{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}], "tablefirsthead": [{"caption": "\\tablefirsthead{}", "snippet": "\\tablefirsthead{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}]}, "makeidx": {"printindex": [{"caption": "\\printindex", "snippet": "\\printindex", "meta": "makeidx-cmd", "score": 0.004417016910870522}]}, "ifpdf": {}, "framed": {"fbox": [{"caption": "\\fbox{}", "snippet": "\\fbox{$1}", "meta": "framed-cmd", "score": 0.020852233066349025}]}, "aliascnt": {}, "layaureo": {"csname": [{"caption": "\\csname", "snippet": "\\csname", "meta": "layaureo-cmd", "score": 0.008565354665444157}], "empty": [{"caption": "\\empty", "snippet": "\\empty", "meta": "layaureo-cmd", "score": 0.002958865219480927}], "setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "layaureo-cmd", "score": 0.00037306820619479756}], "RequireXeTeX": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "layaureo-cmd", "score": 0.00021116765384691477}], "expandafter": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "layaureo-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "layaureo-cmd", "score": 0.021170869458413965}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "layaureo-cmd", "score": 0.3544684201748615}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "layaureo-cmd", "score": 0.3544684201748615}], "addtocounter": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "layaureo-cmd", "score": 0.010241823778997489}], "addtolength": [{"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "layaureo-cmd", "score": 0.028951021040407424}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "layaureo-cmd", "score": 0.028951021040407424}], "stepcounter": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "layaureo-cmd", "score": 0.0030745841706804776}], "setcounter": [{"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "layaureo-cmd", "score": 0.10067834885859363}], "restoregeometry": [{"caption": "\\restoregeometry", "snippet": "\\restoregeometry", "meta": "layaureo-cmd", "score": 0.0007545754795895202}], "loadgeometry": [{"caption": "\\loadgeometry{}", "snippet": "\\loadgeometry{$1}", "meta": "layaureo-cmd", "score": 6.461638865465447e-05}], "savegeometry": [{"caption": "\\savegeometry{}", "snippet": "\\savegeometry{$1}", "meta": "layaureo-cmd", "score": 6.461638865465447e-05}], "geometry": [{"caption": "\\geometry{}", "snippet": "\\geometry{$1}", "meta": "layaureo-cmd", "score": 0.046218420429973615}], "newgeometry": [{"caption": "\\newgeometry{}", "snippet": "\\newgeometry{$1}", "meta": "layaureo-cmd", "score": 0.002597693016139091}]}, "keyval": {"setkeys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "keyval-cmd", "score": 0.00037306820619479756}]}} \ No newline at end of file diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee deleted file mode 100644 index e81bedfc6c..0000000000 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee +++ /dev/null @@ -1 +0,0 @@ -define () -> {"12many": ["setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "Alegreya": ["rmfamily", "RequireXeTeX"], "AlegreyaSans": ["RequireXeTeX"], "AnonymousPro": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "Baskervaldx": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "noexpand", "expandafter"], "Biochemistry-colors": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "CJK": ["selectfont"], "CJKfntef": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "selectfont"], "CJKnumb": ["selectfont"], "CJKulem": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill"], "CJKutf8": ["inputencoding", "noexpand", "expandafter", "selectfont"], "CJKvert": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "Chivo": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "ClearSans": ["RequireXeTeX"], "CormorantGaramond": ["RequireXeTeX"], "CountriesOfEurope": ["setkeys"], "CoverPage": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "setkeys", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "DEoptions": ["setkeys"], "DejaVuSans": ["setkeys"], "DejaVuSansCondensed": ["setkeys"], "DejaVuSansMono": ["setkeys"], "DejaVuSerif": ["setkeys"], "DejaVuSerifCondensed": ["setkeys"], "DotArrow": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ESIEEcv": ["arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "FiraMono": ["RequireXeTeX"], "FiraSans": ["RequireXeTeX"], "Franc-chap": ["appendix", "thechapter", "ChTitleVar"], "GS1": ["color"], "GoMono": ["RequireXeTeX"], "GoSans": ["RequireXeTeX"], "HA-prosper": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "HAPAggie": ["ding", "gray", "green", "red", "documentclass"], "HAPFyma": ["gray", "green", "red", "documentclass"], "HAPHA": ["ding"], "HAPLakar": ["ding"], "HAPTCS": ["ding"], "HAPTCSTealBlue": ["ding", "gray", "green", "red", "documentclass"], "HAPTCSgrad": ["ding"], "HAPTycja": ["ding", "gray", "green", "red", "documentclass"], "HAPcapsules": ["frak", "Bbb", "bold", "mathbb", "Big", "big"], "HAPciment": ["frak", "Bbb", "bold", "mathbb", "Big", "big"], "HAPsimple": ["ding"], "LibreBodoni": ["RequireXeTeX"], "LobsterTwo": ["RequireXeTeX"], "MODRdoctools": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "NumericPlots": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "OldStandard": ["csname", "RequireXeTeX"], "PPRalcatel": ["frak", "Bbb", "bold"], "PPRarabic": ["frak", "Bbb", "bold"], "PPRautumn": ["ttdefault", "sfdefault", "rmdefault", "frak", "Bbb", "bold"], "PPRazure": ["ttdefault", "sfdefault", "rmdefault", "frak", "Bbb", "bold"], "PPRcapsules": ["frak", "Bbb", "bold", "mathbb", "Big", "big"], "PPRcontemporain": ["frak", "Bbb", "bold"], "PPRcorners": ["frak", "Bbb", "bold"], "PPRdefault": ["frak", "Bbb", "bold"], "PPRframes": ["frak", "Bbb", "bold"], "PPRfyma": ["frak", "Bbb", "bold"], "PPRgyom": ["frak", "Bbb", "bold"], "PPRlignesbleues": ["frak", "Bbb", "bold"], "PPRmancini": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "frak", "Bbb", "bold"], "PPRnuancegris": ["frak", "Bbb", "bold"], "PPRprettybox": ["frak", "Bbb", "bold"], "PPRrico": ["frak", "Bbb", "bold"], "PPRserpaggi": ["frak", "Bbb", "bold"], "PPRthomasd": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "frak", "Bbb", "bold"], "PPRtroispoints": ["frak", "Bbb", "bold"], "PPRwinter": ["frak", "Bbb", "bold", "gray", "green", "red", "documentclass"], "PPRwj": ["frak", "Bbb", "bold"], "PTMono": ["setkeys"], "PTSans": ["setkeys"], "PTSansCaption": ["setkeys"], "PTSansNarrow": ["setkeys"], "PTSerif": ["setkeys"], "PTSerifCaption": ["setkeys"], "PlayfairDisplay": ["RequireXeTeX"], "Rosario": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "SASnRdisplay": ["lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "SIunits": ["degreecelsius", "meter", "cdot", "micro", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "UNAMThesis": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "URcolors": ["color", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "URoptions": ["color"], "URpagestyles": ["pagemark", "automark", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "cofoot", "clearpairofpagestyles", "rofoot", "ihead", "cfoot", "lofoot", "setkeys", "rotatebox", "newpage", "clearpage", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "KOMAoptions", "setkomafont", "addtokomafont", "color"], "URrules": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "URspecialopts": ["color"], "UniversalisADFStd": ["noexpand", "expandafter"], "XCharter": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "noexpand", "expandafter"], "abc": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "abntex2abrev": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "abntex2cite": ["citeyear", "bibliography", "cite", "bibliographystyle", "bibitem", "citeonline", "RequireXeTeX", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "abstract": ["abslabeldelim", "abstractnamefont"], "academicons": ["aiResearchGateSquare"], "accanthis": ["RequireXeTeX"], "accenti": ["xspace"], "accents": ["underaccent"], "accsupp": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "noexpand", "expandafter", "empty", "expandafter", "empty", "RequireXeTeX"], "achemso": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "achicago": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "smaller", "mathlarger"], "acro": ["csname", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color", "newpage", "clearpage", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "check", "space", "empty"], "acronym": ["acp", "acfp", "acsfont", "acrodef", "acs", "acro", "aclabelfont", "acl", "acf", "ac"], "acroterm": ["ifthenelse", "value", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "actuarialsymbol": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "addfont": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "addlines": ["clearpage", "afterpage"], "adfarrows": ["expandafter", "ding"], "adfbullets": ["ding"], "adforn": ["adforn", "ding"], "adjmulticol": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "adjustbox": ["expandafter", "setlength", "adjustbox", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "adtrees": ["cancelto", "cancel"], "ae": ["sfdefault", "noexpand", "expandafter"], "aecc": ["noexpand", "expandafter"], "aeguill": ["noexpand", "expandafter", "sfdefault"], "aertt": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill"], "afterpage": ["clearpage", "afterpage"], "akkconditional": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "akkcs": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkgerman": ["inputencoding", "xspace", "expandafter", "noexpand", "expandafter"], "akkgermanabbreviations": ["xspace"], "akkmath": ["frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "frak", "Bbb", "bold"], "akkmathbasic": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "akkmathdisc": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkmathfun": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkmathnum": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkmathproof": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "akkmathrel": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkmathset": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "akkstring": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "akktex": ["csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "makelabel", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "frak", "Bbb", "bold"], "akkwidepage": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "alg": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "algc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock"], "algcompatible": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock"], "algmatlab": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock"], "algorithm": ["listalgorithmname", "listofalgorithms", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "algorithm2e": ["CommentSty", "SetAlgoNoLine", "LinesNotNumbered", "SetAlgoLined", "SetNlSkip", "BlankLine", "theAlgoLine", "SetKwData", "SetKwFunction", "listalgorithmcfname", "nllabel", "SetAlCapHSkip", "algorithmcfname", "RestyleAlgo", "ArgSty", "SetAlgoNoEnd", "DontPrintSemicolon", "SetAlCapSkip", "SetKwBlock", "AlCapFnt", "Indp", "SetKwProg", "DataSty", "SetKwRepeat", "LinesNumbered", "SetAlgoSkip", "SetAlgoCaptionSeparator", "chapter", "SetAlgoVlined", "SetAlFnt", "Indm", "SetCommentSty", "FuncSty", "SetKwFor", "algorithmautorefname", "AlCapNameSty", "SetKw", "listofalgorithms", "SetAlCapNameFnt", "SetAlCapFnt", "SetKwIF", "AlCapNameFnt", "SetAlgoInsideSkip", "csname", "AlCapSty", "SetKwInOut", "renewcommand", "IncMargin", "nl", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "xspace"], "algorithmic": ["STATE", "algorithmicwhile", "ENSURE", "ELSIF", "algorithmicforall", "algorithmicuntil", "FORALL", "algorithmicif", "algorithmicrequire", "algorithmicthen", "REQUIRE", "RETURN", "algorithmicreturn", "algorithmicand", "WHILE", "ENDFOR", "COMMENT", "algorithmicend", "AND", "ENDIF", "algorithmiccomment", "algsetup", "REPEAT", "algorithmicor", "algorithmicdo", "UNTIL", "TRUE", "FALSE", "algorithmicensure", "OR", "IF", "ELSE", "FOR", "algorithmicrepeat", "ENDWHILE", "algorithmicfor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "algorithmicx": ["algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "algpascal": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock"], "algpseudocode": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock"], "allrunes": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "alltt": ["par"], "alnumsec": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "alterqcm": ["multirow", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "ding", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "altverse": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "ams-mdbch": ["frak", "Bbb", "bold"], "amsbsy": ["boldsymbol", "pmb", "frenchspacing", "do"], "amscd": ["tag", "frenchspacing", "do"], "amsfonts": ["frak", "Bbb", "bold"], "amsgen": ["frenchspacing", "do"], "amsmath": ["notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "amsopn": ["arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frenchspacing", "do"], "amsrefs": ["cite", "ndash", "bib"], "amssymb": ["frak", "Bbb", "bold"], "amstext": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "amsthm": ["popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "animate": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "color"], "answers": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "antomega": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "antree": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "anysize": ["marginsize"], "apacite": ["citeyear", "refname", "bibliography", "citep", "citeauthor", "citeA", "citet", "nocite", "shortciteA", "citeNP", "cite", "shortcite", "url", "BPG", "BPGS"], "appendix": ["sectionmark", "appendixpage", "phantomsection", "addcontentsline", "appendixname", "thechapter", "thesection", "appendixpagename", "appendixtocname", "thesubsection"], "appendixnumberbeamer": ["appendix"], "apptools": ["appendix", "AtAppendix"], "apxproof": ["bibliography", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "csname", "setkeys", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "expandafter", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "arabi-add": ["noexpand", "csname", "empty", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "bookmarksetup", "pdfbookmark", "bookmarkget", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "csname", "stepcounter", "addtocounter", "text", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "clearpage", "global", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "expandafter", "expandafter", "csname", "empty"], "arabluatex": ["csname", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color", "frenchspacing", "do", "csname", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter", "setlength", "adjustbox"], "arabxetex": ["csname", "empty", "frenchspacing", "do", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "check", "space", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newpage", "csname", "noexpand", "empty", "color"], "arara": ["csname", "empty", "empty", "empty", "expandafter", "do", "color", "hologo", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "scshape", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "sfdefault", "rmdefault", "xspace", "noexpand", "expandafter", "empty", "bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "arcs": ["smaller", "mathlarger"], "arev": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "noexpand", "expandafter", "frak", "Bbb", "bold"], "arevmath": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "frak", "Bbb", "bold"], "arevtext": ["noexpand", "expandafter"], "arimo": ["RequireXeTeX"], "armtex": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "array": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "arraysort": ["newcommandx", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "arsclassica": ["sectionmark", "spacedallcaps", "spacedlowsmallcaps", "cite", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "RequireXeTeX", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sectionmark", "part", "ctparttext", "spacedallcaps", "cftsecleader", "graffito", "marginpar", "myVersion", "tocEntry", "cftsubsecleader", "spacedlowsmallcaps", "cftchapleader", "chaptermark", "chapter", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "newpage", "clearpage"], "arydshln": ["hline", "hdashline", "cline", "multicolumn", "arrayrulecolor"], "asapsym": ["color"], "ascii": ["xspace"], "asciilist": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter"], "askmaps": ["vector", "Line", "line", "polyline", "polygon"], "assoccnt": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "assurelatexmode": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "asyfig": ["expandafter", "import", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "asymptote": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "asypictureB": ["expandafter", "setkeys", "csname", "rotatebox", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "asyprocess": ["expandafter", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "asysyntex": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "atbegshi": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "atenddvi": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "attachfile": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "attachfile2": ["csname", "empty", "setkeys", "empty", "empty", "csname", "noexpand", "empty", "noexpand", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "atveryend": ["clearpage", "global"], "aurl": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "authblk": ["affil", "rlap", "Affilfont", "Authfont", "footnote", "maketitle", "Authands", "textsuperscript", "thanks", "author"], "authoraftertitle": ["title", "author"], "auto-pst-pdf": ["expandafter", "setkeys", "csname", "RequireXeTeX", "empty", "rotatebox", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "autobreak": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "autolist": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "automata": ["setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "smaller", "mathlarger", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "autonum": ["frenchspacing", "do", "setkeys", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "textblockorigin", "color", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newtoks", "reserveinserts"], "autopdf": ["expandafter", "setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "avremu": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "awesomebox": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "textsuperscript", "textsubscript", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "setkeys", "color", "RequireXeTeX", "rotatebox"], "axodraw2": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "babel": ["expandafter"], "background": ["BgThispage", "backgroundsetup"], "backref": ["backrefpagesname", "backref", "csname", "noexpand", "empty", "check", "space", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "clearpage", "global", "csname", "empty", "makeindex", "index"], "balance": ["balance"], "bardiag": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "bashful": ["expandafter", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "baskervald": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "baskervillef": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "bbding": ["HandRight", "XSolidBrush", "Checkmark"], "bclogo": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "beamerarticle": ["setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "frak", "Bbb", "bold", "makelabel"], "beameraudience": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "beamerbasearticle": ["setkeys", "makelabel", "frak", "Bbb", "bold"], "beamerbasefont": ["frak", "Bbb", "bold"], "beamerbaselocalstructure": ["makelabel"], "beamerbaseoptions": ["setkeys"], "beamerbaserequires": ["setkeys", "makelabel", "frak", "Bbb", "bold"], "beamerbasetranslator": ["setkeys"], "beamercolorthememetropolis": ["expandafter"], "beamerfontthememetropolis": ["expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "RequireXeTeX"], "beamerinnerthememetropolis": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "beamerouterthemeUR": ["cite", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "beamerouterthememetropolis": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "expandafter"], "beamerposter": ["footnotesize", "large", "VeryHuge", "tiny", "veryHuge", "LARGE", "scriptsize", "normalsize", "VERYHuge", "small", "Large", "expandafter"], "beamersubframe": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "beamerthemeCuerna": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "frak", "Bbb", "bold", "textblockorigin", "color", "sfdefault", "rmdefault"], "beamerthemeTorinoTh": ["RequireXeTeX", "ding"], "beamerthemeUR": ["color"], "beamerthemeVerona": ["csname", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "expandafter"], "beamerthememetropolis": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter"], "begriff-bguq": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "bera": ["setkeys", "noexpand", "expandafter"], "beramono": ["setkeys"], "berasans": ["setkeys"], "beraserif": ["setkeys"], "berenis": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "beuron": ["color"], "bewerbung": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "bewerbung-cv": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "bibentry": ["bibliography", "bibentry", "item", "doi", "url", "nobibliography"], "biblatex": ["bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "biblatex-archaeology": ["xpatchcmd", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "multicolumn", "arraybackslash", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "biblatex-chicago": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "biblatex-multiple-dm": ["csname", "noexpand", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "biblatex-opcit-booktitle": ["xpatchcmd", "expandafter", "empty", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "biblatex-source-division": ["xpatchcmd", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "bibleref": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "bibleref-french": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "bibleref-german": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "bibleref-lds": ["noexpand", "csname", "empty", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "csname", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "RequireXeTeX", "empty", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bibleref-mouth": ["noexpand", "check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "csname", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "RequireXeTeX", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bibleref-parse": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX", "newpage", "clearpage"], "bibleref-xidx": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "bibtopic": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "bibtopicprefix": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "clearpage"], "bibunits": ["bibliography"], "bicaption": ["setkeys", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "bidi": ["check", "space", "empty", "csname", "empty", "empty", "newpage", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "bidi-atbegshi": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "bidicode": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "rotatebox"], "bidicontour": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "csname"], "bidihl": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "bidipagegrid": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "bidishadowtext": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "biditools": ["newpage"], "bidituftefloat": ["selectfont", "ifthenelse", "value", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "empty", "RequireXeTeX", "FloatBarrier", "expandafter", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Centering", "justifying", "RaggedRight", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry"], "bidituftegeneralstructure": ["selectfont", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "Centering", "justifying", "RaggedRight"], "bidituftehyperref": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bidituftesidenote": ["selectfont", "ifthenelse", "value", "newpage", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "bibliography", "bibentry", "item", "doi", "url", "nobibliography", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Centering", "justifying", "RaggedRight"], "bidituftetitle": ["newpage"], "bidituftetoc": ["ifthenelse", "value", "newpage", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "titlecontents", "newpage", "startcontents", "contentslabel", "contentspage", "csname", "contentsmargin", "expandafter", "printcontents", "filcenter", "thecontentslabel", "numberline", "titlerule", "dottedcontents", "contentsuse", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "bigdelim": ["multirow"], "bigfoot": ["newtoks", "reserveinserts"], "bigints": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "bigstrut": ["bigstrut"], "binary": ["degreecelsius", "meter", "cdot", "micro", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "binarytree": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "binomexp": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "biocon": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "biolinum": ["RequireXeTeX"], "biolinum-type1": ["RequireXeTeX"], "birm": ["smaller", "mathlarger"], "bitpattern": ["setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "bits": ["smaller", "mathlarger"], "bitset": ["csname", "empty"], "bizcard": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "blindtext": ["blinddocument", "Blindtext", "grqq", "blindtext", "glqq", "xspace"], "blkarray": ["small"], "blkcntrl": ["smaller", "mathlarger"], "blox": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "bm": ["bm"], "bmhydoc": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "bookmarksetup", "pdfbookmark", "bookmarkget", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "ding", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bmpsize": ["check", "space", "empty", "expandafter", "setkeys", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "bmpsize-base": ["expandafter", "csname", "empty"], "bodegraph": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Letter", "setkeys", "rotatebox"], "bohr": ["newpage", "clearpage", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "setkeys", "rotatebox"], "boites_exemples": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "boldline": ["hlineB", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "bondcolor": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "bondgraph": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "bondgraphs": ["bm", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox", "frak", "Bbb", "bold"], "bookmark": ["bookmarksetup", "pdfbookmark", "bookmarkget", "noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "RequireXeTeX", "empty", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "booktabs": ["specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule"], "boxhandler": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "bpchem": ["xspace"], "braket": ["ket", "bra", "braket", "ketbra"], "breqn": ["biggl", "bigg", "Bigg", "end", "Big", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "color"], "btxdockit": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bugtracker": ["noexpand", "csname", "empty", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "rotatebox", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "bussproofs": ["makeatletter", "makeatother"], "bvoutln": ["ding"], "bxcjkjatype": ["inputencoding", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setkeys", "noexpand", "expandafter", "selectfont"], "bxdvidriver": ["RequireXeTeX", "empty", "csname", "empty"], "bxjalipsum": ["csname", "empty"], "bxnewfont": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "bxpapersize": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "empty"], "bxpdfver": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "AtBeginShipout", "AtBeginShipoutNext", "empty"], "bytefield": ["setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "cabin": ["RequireXeTeX"], "cachepic": ["setkeys", "csname", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "caladea": ["RequireXeTeX"], "calc": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "calcage": ["ifthenelse", "value", "expandafter", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "csname", "noexpand", "empty", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty"], "calctab": ["EUR", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "calculation": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "calendrierfpar": ["expandafter", "expandafter", "gray", "green", "red", "documentclass"], "calendrierfpmodified": ["expandafter", "gray", "green", "red", "documentclass"], "callouts": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "calrsfs": ["mathcal"], "cancel": ["cancelto", "cancel"], "cantarell": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "caption": ["appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "setkeys", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "caption2": ["setkeys", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "caption3": ["DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "setkeys"], "carbohydrates": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "carlito": ["RequireXeTeX"], "cases": ["theequation"], "catchfile": ["expandafter"], "catchfilebetweentags": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newtoks", "reserveinserts", "expandafter", "expandafter", "empty"], "catechis": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "catoptions": ["usepackage", "documentclass"], "cc2cite": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "cc4amsart": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "cc4apjrnl": ["frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "cc4elsart": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "cc4jT": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "cc4llncs": ["frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "cc4siamltex": ["frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "cc4svjour": ["frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "ccaption": ["label", "caption"], "ccicons": ["ccbynd", "ccbysa"], "cclayout": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter"], "cclicenses": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "cdpbabel": ["expandafter"], "cell": ["expandafter", "nocite", "citeonline", "citenum", "cite"], "cellspace": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "centernot": ["centernot"], "cfr-lm": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "changelayout": ["newtoks", "reserveinserts", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "changes": ["ifthenelse", "value", "expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "selectfont", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "chappg": ["pagenumbering"], "chapterbib": ["bibliographystyle", "include", "bibliography"], "chapterfolder": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "chapterthumb": ["pagemark", "automark", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "newpage", "clearpage"], "checklistings": ["refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "csname", "noexpand", "empty", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "chemarr": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "chemarrow": ["chemarrow"], "chemexec": ["setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "underaccent", "fbox", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "chemfig": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "chemformula": ["ch", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sfrac", "color", "newpage", "clearpage", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "nicefrac"], "chemgreek": ["csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do"], "chemmacros": ["color"], "chemmacros4": ["bm", "intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "frenchspacing", "do", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "ch", "expandafter", "si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "nicefrac", "sfrac", "color", "expandafter", "newpage", "clearpage"], "chemmacros5": ["color"], "chemnum": ["csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "clearpage"], "chemscheme": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "chemschemex": ["setkeys", "newcommandx", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "chemstr": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "chemstyle": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "xspace", "setkeys", "csname", "stepcounter", "addtocounter", "text", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "frenchspacing", "do", "expandafter", "empty", "csname", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "chemtimes": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "gray", "green", "red", "documentclass"], "chessboard": ["ifthenelse", "value", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "setboardfontencoding", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "chessfss": ["setboardfontencoding", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "chet": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "chextras": ["em", "textsubscript", "setlength", "sfdefault", "rmdefault", "noexpand", "expandafter"], "chkfloat": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "chmst-pdf": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "chmst-ps": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "gray", "green", "red", "documentclass"], "chngcntr": ["counterwithout", "counterwithin"], "chronology": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "color", "rotatebox"], "chronosys": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "chscite": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "churchslavonic": ["csname", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "cinzel": ["RequireXeTeX"], "circuitikz": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "cite": ["expandafter", "nocite", "citeonline", "citenum", "cite"], "citeall": ["color"], "cjkutf8-ko": ["inputencoding", "noexpand", "expandafter", "selectfont"], "classics": ["color"], "classicthesis": ["sectionmark", "part", "ctparttext", "spacedallcaps", "cftsecleader", "graffito", "marginpar", "myVersion", "tocEntry", "cftsubsecleader", "spacedlowsmallcaps", "cftchapleader", "chaptermark", "chapter", "cite", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "RequireXeTeX", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "newpage", "clearpage"], "classif2": ["xspace"], "cleanthesis": ["em", "textsubscript", "setlength", "csname", "empty", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "setkeys", "rotatebox", "empty", "empty", "expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "blinddocument", "Blindtext", "grqq", "blindtext", "glqq", "cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "noexpand", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "noexpand", "expandafter", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "check", "space", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "csname", "empty"], "cleveref": ["refstepcounter", "crefname", "csname", "Crefname", "expandafter", "crefmultiformat", "creflastconjunction", "crefdefaultlabelformat", "crefrangeconjunction", "label", "crefformat", "creflabelformat", "cref", "crefrangeformat", "labelcref", "Cref"], "cloze": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "color", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "clrscode3e": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "cmath": ["setkeys", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "cmll": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "cmpj": ["csname", "empty", "setkeys", "rotatebox", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "csname", "noexpand", "empty", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "noexpand", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "cmpj2": ["csname", "empty", "setkeys", "rotatebox", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "csname", "noexpand", "empty", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "noexpand", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "cmpj3": ["csname", "empty", "setkeys", "rotatebox", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "csname", "noexpand", "empty", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "noexpand", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "noexpand", "expandafter", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "cmsdocs": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "thepage", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "cnbwp-manual": ["noexpand", "csname", "empty", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "markboth", "setdefaultlanguage", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "printindex", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "rotatebox", "RequireXeTeX", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "color", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "cnltx": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "expandafter", "empty", "expandafter"], "cnltx-base": ["expandafter", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter"], "cnltx-example": ["csname", "empty", "expandafter", "setkeys", "rotatebox", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "color", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "check", "space", "empty", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "expandafter", "setlength", "adjustbox"], "cnltx-listings": ["expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "expandafter", "setkeys", "expandafter", "empty", "expandafter"], "cnltx-names": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "expandafter", "empty", "expandafter"], "cnltx-tools": ["noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "expandafter", "empty", "RequireXeTeX", "expandafter", "newpage", "clearpage"], "cnltx-translations": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "expandafter", "empty", "expandafter", "newpage", "clearpage"], "cntformats": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "expandafter", "empty", "expandafter"], "cntperchap": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "cochineal": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "noexpand", "expandafter"], "codesection": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "collcell": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "color": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "coloring": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "color"], "colortab": ["doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "gray", "green", "red", "documentclass"], "colortbl": ["hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "colorwav": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "colorweb": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "colourchange": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "combcite": ["expandafter", "nocite", "citeonline", "citenum", "cite"], "combinedgraphics": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "combnat": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "comfortaa": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "comicneue": ["color"], "commath": ["dod", "dpd", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "comment": ["specialcomment", "includecomment"], "complexity": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "compsci": ["par", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "smaller", "mathlarger", "do", "MakeShortVerb"], "concepts": ["newtoks", "reserveinserts", "nth", "thesection", "xspace", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "constants": ["setkeys"], "conteq": ["csname", "csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "contour": ["contour", "contourlength", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "csname"], "contracard": ["csname", "empty", "cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "cool": ["frak", "Bbb", "bold", "forloop", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "coollist": ["forloop", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "coolstr": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "coolthms": ["noexpand", "csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "newcommandx", "empty", "RequireXeTeX", "refstepcounter", "crefname", "csname", "Crefname", "expandafter", "crefmultiformat", "creflastconjunction", "crefdefaultlabelformat", "crefrangeconjunction", "label", "crefformat", "creflabelformat", "cref", "crefrangeformat", "labelcref", "Cref", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold", "newpage", "clearpage", "csname", "empty"], "copyedit": ["acp", "acfp", "acsfont", "acrodef", "acs", "acro", "aclabelfont", "acl", "acf", "ac", "color", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "copyrightbox": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "coseoul": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "counttexruns": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "couriers": ["setkeys"], "cprotect": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "crbox": ["newpage"], "crimson": ["RequireXeTeX"], "crosswrd": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "cryptocode": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "frenchspacing", "do", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "pbox", "par", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "newcommandx", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "forloop", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "newtoks", "reserveinserts", "color", "expandafter"], "csquotes": ["quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setkeys"], "css-colors": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "csvsimple": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ctable": ["tmark", "ctable", "setkeys", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "ctex": ["CTeX", "selectfont", "color"], "ctex-faq": ["selectfont", "bm", "printindex", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "CTeX", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "color", "frak", "Bbb", "bold", "frenchspacing", "do", "expandafter", "nocite", "citeonline", "citenum", "cite", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "ctexcap": ["selectfont", "color", "CTeX"], "ctexheading": ["color"], "ctexhook": ["color"], "ctexpatch": ["color"], "ctexsize": ["color"], "ctib": ["noexpand", "expandafter"], "ctibmantra": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "smaller", "mathlarger"], "cu-calendar": ["csname", "empty"], "cu-kinovar": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "cu-util": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "cuisine": ["nicefrac", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "currfile": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "currvita": ["cvheadingfont", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "curve2e": ["put", "polyline", "vector", "Line", "line", "polyline", "polygon", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "cv4tw-theme-core": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "empty", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "forloop", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "Rotatebox", "color", "ding", "frak", "Bbb", "bold", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "pbox", "doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "RequireXeTeX", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "cwpuzzle": ["frak", "Bbb", "bold"], "cyber": ["csname", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "dashbox": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "dashrule": ["hdashrule"], "dashundergaps": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "databar": ["csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "expandafter"], "databib": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "datagidx": ["cite", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "clearpage", "afterpage", "expandafter", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "datapie": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "dataplot": ["csname", "stepcounter", "addtocounter", "text", "csname", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "dataref": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "datatool": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "datatool-base": ["expandafter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "datatool-fp": ["expandafter", "expandafter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "datatool-pgfmath": ["expandafter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "dateiliste": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "datetime": ["THEMONTH", "dateseparator", "yyyymmdddate", "usdate", "monthname", "csname", "settimeformat", "shortmonthname", "THEYEAR", "currenttime", "THEDAY", "newdateformat", "today", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "datetime2": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "datetime2-en-fulltext": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "setkeys", "RequireXeTeX"], "datetime2-it-fulltext": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "RequireXeTeX"], "dblfloatfix": ["em", "textsubscript", "setlength"], "dccpaper-base": ["DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "csname", "multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "sfdefault", "rotatebox", "noexpand", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "expandafter", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel"], "dcm": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color"], "dcolumn": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "dcwrtbib": ["clearpage", "afterpage"], "decorule": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "dejavu": ["setkeys"], "delarray": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "delimset": ["setkeys", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "denisbdoc": ["cite", "csname", "empty", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "raggedleftmarginnote", "marginnote", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "color", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "frak", "Bbb", "bold", "ifthenelse", "value", "hologo", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect", "csname", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "empty", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "multirow", "thepage", "THEMONTH", "dateseparator", "yyyymmdddate", "usdate", "monthname", "csname", "settimeformat", "shortmonthname", "THEYEAR", "currenttime", "THEDAY", "newdateformat", "today", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "specialcomment", "includecomment", "noexpand", "csname", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "tocchapter", "tocfile", "listfigurename", "contentsname", "tocbibname", "settocbibname", "indexname", "tableofcontents", "listoffigures", "listoftables", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "subcaption", "subref", "newsubfloat", "subcaptionbox", "xpatchcmd", "xspace", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "printindex", "makeindex", "index", "clearpage", "afterpage", "csname", "empty"], "dev": ["expandafter", "nocite", "citeonline", "citenum", "cite"], "dhucs-enumerate": ["makelabel"], "dhucs-interword": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "dhucs-nanumfont": ["noexpand", "expandafter"], "dhucs-sectsty": ["raggedright", "sectionfont", "subsectionfont", "underline", "paragraph", "interlinepenalty", "chapterfont", "subsubsectionfont", "allsectionsfont", "section", "subsection", "subsubsection"], "dhucs-setspace": ["onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "diadia": ["csname", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "newpage", "clearpage", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "frak", "Bbb", "bold"], "diagbox": ["backslashbox", "diagbox", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "vector", "Line", "line", "polyline", "polygon"], "diagram": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "dialogue": ["smaller", "mathlarger"], "dictsym": ["ding", "setkeys"], "diffcoeff": ["color"], "diffcoeffx": ["color"], "digiconfigs": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "dingbat": ["checkmark"], "directory": ["UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "dirtytalk": ["say", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "dlfltxbcodetips": ["setkeys", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "rotatebox", "csname", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "dlfltxbmarkup": ["selectfont", "setkeys", "Centering", "justifying", "RaggedRight"], "dlfltxbmisc": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "selectfont", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "Centering", "justifying", "RaggedRight"], "dnaseq": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "doc": ["maketitle", "verbatim", "do", "verb"], "docidx2e": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "maketitle", "verbatim", "do", "verb"], "docindex": ["maketitle", "verbatim", "do", "verb", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "doclicense": ["csname", "noexpand", "empty", "ifthenelse", "value", "csname", "noexpand", "empty", "xspace", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "doctools": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "empty", "expandafter", "empty", "csname", "empty"], "doi": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "dotlessj": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "dottex": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "download": ["color", "csname", "empty"], "dox": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "dozenal": ["em", "textsubscript", "setlength", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "draftfigure": ["setkeys", "csname", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "draftwatermark": ["SetWatermarkAngle", "SetWatermarkFontSize", "SetWatermarkColor", "SetWatermarkText", "SetWatermarkScale", "SetWatermarkLightness", "setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "drama": ["smaller", "mathlarger"], "dramatist": ["xspace"], "drawmatrix": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "drawstack": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "drm": ["par", "csname", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "RequireXeTeX", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "droid": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "scshape"], "droidmono": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "droidsans": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "droidserif": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "dry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "dspblocks": ["setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "RequireXeTeX", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "dsptricks": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "dtk-extern": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "dtk-logos": ["hologo", "color"], "dtk-url": ["noexpand", "expandafter", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "dtx-style": ["csname", "empty", "empty", "maketitle", "verbatim", "do", "verb", "empty", "csname", "stepcounter", "addtocounter", "text", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "color", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "selectfont", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "makeindex", "index", "CTeX", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "clearpage", "global", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "noexpand", "frenchspacing", "do", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "dtxdescribe": ["ifthenelse", "value", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "DeclareFloatingEnvironment", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "color", "vector", "Line", "line", "polyline", "polygon", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "dvngcite": ["expandafter", "nocite", "citeonline", "citenum", "cite"], "dynamicnumber": ["color"], "dynblocks": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "dyntree": ["forloop", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold"], "ean13isbn": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "easy-todo": ["cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "easyReview": ["highlight", "alert", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "rotatebox", "sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "todo", "todototoc", "missingfigure", "phantomsection", "listoftodos"], "easyfig": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "expandafter", "setlength", "adjustbox"], "easyformat": ["expandafter", "empty"], "easylist": ["ListProperties"], "ebezier": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ebgaramond": ["RequireXeTeX"], "ebgaramond-maths": ["RequireXeTeX"], "ebproof": ["color"], "ecgdraw": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "eco": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "ecvNLS": ["expandafter"], "ed": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "ednotes": ["linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "eemeir": ["xspace"], "efbox": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "egplot": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "ekaia": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "empty", "expandafter", "RequireXeTeX", "raggedright", "sectionfont", "subsectionfont", "underline", "paragraph", "interlinepenalty", "chapterfont", "subsubsectionfont", "allsectionsfont", "section", "subsection", "subsubsection", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "electrum": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "eledform": ["selectfont", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "Centering", "justifying", "RaggedRight", "newcommandx", "RequireXeTeX"], "eledmac": ["selectfont", "newcommandx", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "RequireXeTeX", "Centering", "justifying", "RaggedRight"], "eledpar": ["xspace"], "elements": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "ellipse": ["vector", "Line", "line", "polyline", "polygon"], "ellipsis": ["xspace"], "elocalloc": ["newtoks", "reserveinserts"], "elzcards": ["setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "color"], "emarks": ["newtoks", "reserveinserts"], "embedall": ["lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "embrac": ["color"], "emp": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "empheq": ["label", "nonumber", "textcolor", "eqref", "intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "emptypage": ["cleardoublepage"], "endfloat": ["DeclareDelayedFloatFlavor", "setkeys"], "endiagram": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup"], "endnotes": ["theendnotes", "endnote"], "engpron": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "textipa"], "engpron-tools": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "empty", "RequireXeTeX", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "engrec": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "enotez": ["xpatchcmd", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "enparen": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "enumerate": ["makelabel"], "enumitem": ["descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "enumitem-zref": ["csname", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "addcontentsline", "zlabel", "zref", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "environ": ["csname", "expandafter"], "epigraph": ["epigraphsize", "epigraph", "epigraphflush"], "epsdice": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "epsf": ["epsfbox"], "epsfig": ["epsfbox", "psfig", "rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "epspdfconversion": ["AppendGraphicsExtensions", "check", "space", "empty", "csname", "empty", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "epstopdfsetup", "epstopdfDeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "epstopdf": ["AppendGraphicsExtensions", "check", "space", "empty", "csname", "empty", "csname", "empty", "epstopdfsetup", "epstopdfDeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "epstopdf-base": ["epstopdfsetup", "epstopdfDeclareGraphicsRule", "csname", "noexpand", "empty", "AppendGraphicsExtensions", "check", "space", "empty", "csname", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "csname", "empty"], "eqell": ["xspace"], "eqlist": ["eqparbox", "item", "csname", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "eqnalign": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "eqnarray": ["multicolumn", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "eqparbox": ["eqparbox", "item", "csname", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "erewhon": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "errata": ["setkeys"], "esint": ["oiint", "varoiint", "int", "oint", "iiint", "iint"], "esk": ["csname", "noexpand", "empty", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "eskdappsheet": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdcap": ["setkeys", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "eskdchngsheet": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdexplan": ["expandafter"], "eskdfootnote": ["csname", "empty", "frenchspacing", "do", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "check", "space", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "noexpand", "empty"], "eskdfreesize": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdlang": ["expandafter"], "eskdlist": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "eskdplain": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdspec": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdspecii": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eskdstamp": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "empty", "RequireXeTeX", "expandafter", "rotatebox"], "eskdtitle": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "expandafter"], "eso-pic": ["LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setkeys", "AtBeginShipout", "AtBeginShipoutNext", "empty"], "esvect": ["vv"], "etdipa": ["ifoot", "setheadsepline", "pagemark", "headfont", "clearscrplain", "clearscrheadings", "clearscrheadfoot", "ihead", "cfoot", "ofoot", "ohead", "chead", "automark", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "etex": ["newtoks", "reserveinserts"], "etexcmds": ["empty"], "etextools": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newtoks", "reserveinserts"], "etoc": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "etoolbox": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "eucal": ["mathscr", "mathcal"], "eufrak": ["mathfrak"], "eulerpx": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "eulervm": ["big"], "euro": ["expandafter"], "eurosym": ["EUR"], "euscript": ["mathscr", "mathcal"], "everyhook": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "everysel": ["selectfont"], "example-mycolorsetup": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "exceltex": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "exercise": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "exercises": ["csname", "noexpand", "empty", "raggedleftmarginnote", "marginnote", "csname", "noexpand", "empty", "expandafter", "empty", "color", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "expl3": ["color"], "exsheets": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "setkeys", "expandafter", "empty", "rotatebox", "expandafter", "newpage", "clearpage", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "exsheets-listings": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "setkeys", "expandafter", "empty", "rotatebox", "expandafter", "newpage", "clearpage", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "color"], "exsol": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "extarrows": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "extpfeil": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "setkeys", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "frak", "Bbb", "bold", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "extract": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "extraipa": ["textipa"], "extramarks": ["markright", "markboth", "rightmark", "extramarks", "leftmark"], "fakearcs": ["smaller", "mathlarger"], "fancybox": ["doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment"], "fancyhdr": ["sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "fancyheadings": ["sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "fancylabel": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "fancyref": ["expandafter", "csname"], "fancytabs": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "fancytooltips": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "csname", "rotatebox", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "fancyvrb": ["refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "setkeys"], "faq": ["specialcomment", "includecomment", "setkeys", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "do", "MakeShortVerb"], "farsical": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "fast-diagram": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "smaller", "mathlarger", "setkeys", "newcommandx", "rotatebox"], "fbb": ["noexpand", "expandafter"], "fclfont": ["em", "noexpand", "expandafter"], "fcltxdoc": ["csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "theadalign", "makecell", "theadset", "theadgape", "height", "setcellgapes", "diaghead", "Xhline", "arraystretch", "Gape", "theadfont", "thead", "makegapedcells", "cellgape", "raggedleftmarginnote", "marginnote", "Huge", "setkeys", "rotatebox", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "EUR", "fbox", "newpage", "clearpage", "hologo", "HandRight", "XSolidBrush", "Checkmark", "csname", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "RequireXeTeX", "noexpand", "expandafter", "check", "space", "empty", "xspace", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule"], "fcnumparser": ["csname"], "fcolumn": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "fcprefix": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "feupphdteses": ["inputencoding", "csname", "empty", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "multicolumn", "arraybackslash", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "printindex", "bigg", "Big", "big", "rmdefault", "setkeys", "empty", "rotatebox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "FloatBarrier", "expandafter", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "EUR", "color", "setganttlinklabel", "newganttchartelement", "ganttset", "gantttitlelist", "ganttlink", "gantttitlecalendar", "gantttitle", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "noexpand", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "includepdf", "includegraphics", "addcontentsline", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "sfdefault", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "bookmarksetup", "pdfbookmark", "bookmarkget", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "check", "space", "empty", "si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "empty", "noexpand", "expandafter", "empty", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "multirow", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "expandafter", "setlength", "adjustbox", "csname", "empty"], "feynmp": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "feynmp-auto": ["csname", "RequireXeTeX", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "fhACtitlepage": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fifo-stack": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "figlatex": ["csname", "empty", "csname", "csname", "empty", "epstopdfsetup", "epstopdfDeclareGraphicsRule", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "AppendGraphicsExtensions", "check", "space", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty"], "figsize": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "subfigure", "subref", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "filehook-fink": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "fink": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "fisource": ["maketitle", "verbatim", "do", "verb", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "fix-tudscrfonts": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "fixlatvian": ["setkeys", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "RequireXeTeX", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "markboth", "setdefaultlanguage"], "fixltx2e": ["em", "textsubscript", "setlength"], "fixme": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "fixmetodonotes": ["cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "setkeys", "csname", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fixseminar": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "flagderiv": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "flashmovie": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "flexisym": ["color"], "flipbook": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "float": ["floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "floatpag": ["floatpagestyle", "rotfloatpagestyle"], "floatrow": ["restylefloat", "floatfoot", "floatsetup", "setkeys", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "flowchart": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "flowfram": ["framebreak", "newstaticframe", "newflowframe", "expandafter", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "clearpage", "afterpage"], "fmp": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "fmtcount": ["csname", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "setkeys", "RequireXeTeX"], "fnbreak": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "fncychap": ["appendix", "thechapter", "ChTitleVar"], "fnpct": ["color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "fnspe": ["bm", "setkeys", "dmat", "curl", "dv", "det", "Tr", "ket", "bra", "div", "qty", "mel", "norm", "pdv", "qq", "Re", "log", "vb", "poissonbracket", "cos", "dd", "tan", "mqty", "abs", "order", "cot", "cross", "comm", "eval", "pmat", "ip", "braket", "cosh", "exp", "sin", "Im", "sinh", "expval", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color", "frak", "Bbb", "bold", "frenchspacing", "do", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "fnumprint": ["ifthenelse", "value", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "fontawesome": ["RequireXeTeX"], "fontaxes": ["csname"], "fontbook": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "color", "rotatebox"], "fontdoc": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "fontenc": ["noexpand", "expandafter"], "fontspec": ["color"], "fontspec-luatex": ["noexpand", "expandafter", "color"], "fontspec-xetex": ["noexpand", "expandafter", "color"], "footmisc": ["multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect"], "footnote": ["footnote", "expandafter", "makesavenoteenv", "parbox"], "footnotebackref": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "footnoterange": ["xspace", "expandafter", "empty"], "foreign": ["xspace"], "forest": ["noexpand", "forestset", "expandafter", "bracketset", "csname", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "newtoks", "reserveinserts", "setkeys", "color", "rotatebox", "expandafter"], "forest-doc": ["csname", "addcontentsline", "expandafter", "setkeys", "rotatebox", "ref", "protect", "label", "nameref", "pageref", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "color", "csname", "checkmark", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty", "expandafter", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "noexpand", "forestset", "expandafter", "bracketset", "thepage", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "forest-index": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "noexpand", "forestset", "expandafter", "bracketset", "newtoks", "reserveinserts", "color"], "forest-lib-edges": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "noexpand", "forestset", "expandafter", "bracketset", "newtoks", "reserveinserts", "color"], "forest-lib-linguistics": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "noexpand", "forestset", "expandafter", "bracketset", "newtoks", "reserveinserts", "color"], "forloop": ["forloop", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "formular": ["xspace"], "fotex": ["bm", "csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "addcontentsline", "setkeys", "rotatebox", "ttdefault", "sfdefault", "rmdefault", "empty", "empty", "ref", "protect", "label", "nameref", "pageref", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "csname", "noexpand", "empty", "ding", "frak", "Bbb", "bold", "noexpand", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "Letter", "Mobilefone", "Telefon", "Mundus", "thepage", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "fourier": ["noexpand", "expandafter"], "fouriernc": ["noexpand", "expandafter"], "fp": ["expandafter"], "fp-basic": ["expandafter"], "fp-eqn": ["expandafter"], "fp-eval": ["expandafter"], "fp-exp": ["expandafter"], "fp-pas": ["expandafter"], "fp-random": ["expandafter"], "fp-snap": ["expandafter"], "fp-trigo": ["expandafter"], "fp-upn": ["expandafter"], "fr-fancy": ["doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment"], "fr-longtable": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "framed": ["fbox"], "frcursive": ["noexpand", "expandafter"], "frege": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "frak", "Bbb", "bold"], "frontespizio": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "csname", "csname", "rotatebox", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "clearpage", "afterpage", "expandafter"], "fsbmath": ["inputencoding", "csname", "empty", "setkeys", "rotatebox", "empty", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "fbox", "frak", "Bbb", "bold", "noexpand", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "makelabel", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "cancelto", "cancel", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "csname", "empty"], "ftnright": ["footnotesize"], "fullminipage": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setkeys"], "fullwidth": ["csname", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty"], "functan": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "fvextra": ["expandafter", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "fvrb-ex": ["setkeys", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "fxenvlayoutcolor": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fxenvlayoutcolorsig": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fxlayoutmarginnote": ["raggedleftmarginnote", "marginnote"], "fxlayoutpdfcmargin": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfcnote": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfcsigmargin": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfcsignote": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfmargin": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfnote": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfsigmargin": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxlayoutpdfsignote": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "raggedleftmarginnote", "marginnote", "setkeys", "expandafter", "empty", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "thepage"], "fxtargetlayoutcolor": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fxtargetlayoutcolorcb": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fxthemecolor": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "fxthemecolorsig": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "galois": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "gamebook": ["KOMAoptions", "setkomafont", "addtokomafont", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "setkeys", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "markright", "markboth", "rightmark", "extramarks", "leftmark", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "newpage", "clearpage"], "gastex": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname"], "gatech-thesis-gloss": ["makegloss"], "gatech-thesis-index": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "gatech-thesis-losa": ["makegloss"], "gauss": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "gb4e": ["ex"], "gcard": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textblockorigin", "color", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "gcite": ["expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "genealogytree": ["csname", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "expandafter"], "genmpage": ["setkeys"], "gensymb": ["micro", "ohm", "celsius", "degree"], "geometry": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "empty", "RequireXeTeX", "setkeys"], "german": ["today"], "getfiledate": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newtoks", "reserveinserts", "frak", "Bbb", "bold"], "getitems": ["csname", "expandafter"], "getmap": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "gettitlestring": ["addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "gfsartemisia": ["sqrt"], "ghab": ["newpage"], "ghsystem": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "rotatebox", "setkeys", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "newpage", "clearpage"], "gillius": ["RequireXeTeX"], "gillius2": ["RequireXeTeX"], "gincltex": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "expandafter", "setlength", "adjustbox"], "gitfile-info": ["noexpand", "csname", "empty", "csname", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "rotatebox", "empty", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "RequireXeTeX", "expandafter", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "color", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "gitinfo": ["csname", "noexpand", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "gitinfo2": ["csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG"], "gitlog": ["expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "gitsetinfo": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "gloss": ["makegloss"], "gloss_add": ["makegloss"], "glossaries": ["number", "printglossaries", "do", "makenoidxglossaries", "glslongpluralkey", "printnoidxglossary", "newacronym", "newglossary", "defglsentryfmt", "printglossary", "the", "glossarysection", "setglossarysection", "makeglossaries", "glslabel", "glspostdescription", "printnoidxglossaries", "glsresetall", "setglossarystyle", "acronymtype", "ifglsused", "glossaryname", "newglossaryentry", "printindex", "glsgenentryfmt", "cite", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "expandafter", "expandafter"], "glossaries-accsupp": ["cite", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "noexpand", "empty", "expandafter", "empty", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "number", "printglossaries", "do", "makenoidxglossaries", "glslongpluralkey", "printnoidxglossary", "newacronym", "newglossary", "defglsentryfmt", "printglossary", "the", "glossarysection", "setglossarysection", "makeglossaries", "glslabel", "glspostdescription", "printnoidxglossaries", "glsresetall", "setglossarystyle", "acronymtype", "ifglsused", "glossaryname", "newglossaryentry", "printindex", "glsgenentryfmt", "csname", "stepcounter", "addtocounter", "text", "noexpand", "expandafter", "empty", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "expandafter", "expandafter", "expandafter"], "glossaries-extra": ["gls", "newglossary", "newglossaryentry", "Gls", "newabbreviation", "makeglossaries", "cite", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "number", "printglossaries", "do", "makenoidxglossaries", "glslongpluralkey", "printnoidxglossary", "newacronym", "newglossary", "defglsentryfmt", "printglossary", "the", "glossarysection", "setglossarysection", "makeglossaries", "glslabel", "glspostdescription", "printnoidxglossaries", "glsresetall", "setglossarystyle", "acronymtype", "ifglsused", "glossaryname", "newglossaryentry", "printindex", "glsgenentryfmt", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "expandafter", "expandafter"], "glossaries-prefix": ["cite", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "number", "printglossaries", "do", "makenoidxglossaries", "glslongpluralkey", "printnoidxglossary", "newacronym", "newglossary", "defglsentryfmt", "printglossary", "the", "glossarysection", "setglossarysection", "makeglossaries", "glslabel", "glspostdescription", "printnoidxglossaries", "glsresetall", "setglossarystyle", "acronymtype", "ifglsused", "glossaryname", "newglossaryentry", "printindex", "glsgenentryfmt", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "expandafter", "expandafter"], "glossary-long": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "glossary-longbooktabs": ["specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "glossary-longragged": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "glossary-mcols": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "glossary-super": ["tablelasttail", "tabletail", "tablefirsthead", "tablehead"], "glossary-superragged": ["tablelasttail", "tabletail", "tablefirsthead", "tablehead", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "gmampulex": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmbase": ["setkeys", "color", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "gmcommand": ["setkeys", "color", "rotatebox", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "gmdoc": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "gmdoc-enhance": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "gmenvir": ["setkeys", "color", "rotatebox", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "gmlogos": ["setkeys", "color", "rotatebox", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "gmmeta": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmmw": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmnotonlypream": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmp": ["par", "setkeys", "csname", "csname", "rotatebox", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter"], "gmparts": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmtypos": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "color", "rotatebox"], "gmurl": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmutils": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gmverb": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "gnuplottex": ["expandafter", "setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "gradientframe": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setkeys"], "grafcet": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Letter", "setkeys", "rotatebox"], "graphbox": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "graphfig": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "graphics": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "graphicx": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "graphicx-psmin": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "graphviz": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "greekdates": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "greektonoi": ["xspace"], "gregoriosyms": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "gregoriotex": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "csname", "rotatebox", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "grfext": ["AppendGraphicsExtensions", "check", "space", "empty", "csname", "empty"], "grffile": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "csname", "RequireXeTeX", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "grfpaste": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "grid": ["setkeys"], "grid-system": ["expandafter", "forloop", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "grundgesetze": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "gtrlib.largetrees": ["csname", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "expandafter"], "gu": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "vector", "Line", "line", "polyline", "polygon"], "guit": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "guitarchordschemes": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "setkeys", "expandafter", "empty", "rotatebox", "expandafter"], "halloweenmath": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "vector", "Line", "line", "polyline", "polygon", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "handout": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "hands": ["setkeys", "epsfbox", "psfig", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "haparabica": ["ding", "gray", "green", "red", "documentclass"], "har2nat": ["citeasnoun", "cite", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "hardwrap": ["RequireXeTeX"], "harmony": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "frak", "Bbb", "bold"], "harpoon": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "harvard": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "harveyballs": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "havannah": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "he-she": ["xspace"], "hebrew_newcode": ["expandafter", "inputencoding"], "hebrew_oldcode": ["expandafter", "inputencoding"], "hebrew_p": ["expandafter", "inputencoding"], "helvet": ["sfdefault", "setkeys"], "hep": ["label", "caption", "csname", "empty", "ket", "bra", "braket", "ketbra", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "subfigure", "subref", "csname", "empty", "expandafter", "nocite", "citeonline", "citenum", "cite", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "cancelto", "cancel", "setkeys", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "noexpand", "empty", "noexpand", "frenchspacing", "do", "tocchapter", "tocfile", "listfigurename", "contentsname", "tocbibname", "settocbibname", "indexname", "tableofcontents", "listoffigures", "listoftables", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "xspace", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "clearpage", "afterpage", "degreecelsius", "meter", "cdot", "micro", "csname", "empty"], "hepnames": ["xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "hepnicenames": ["xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "hepparticles": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "heppennames": ["xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "hepunits": ["xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "degreecelsius", "meter", "cdot", "micro"], "here": ["floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "heuristica": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "hexgame": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "gray", "green", "red", "documentclass"], "hf-tikz": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "hfoldsty": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "hhfixme": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "hhline": ["hhline"], "hhtensor": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "hijrical": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "hindicaptions": ["RequireXeTeX"], "hobete": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "hobsub-generic": ["check", "space", "empty", "empty", "csname", "empty", "csname", "empty", "expandafter", "empty"], "hobsub-hyperref": ["noexpand", "check", "space", "empty", "empty", "csname", "empty", "csname", "empty", "expandafter", "empty"], "hologo": ["hologo"], "holtxdoc": ["noexpand", "hologo", "csname", "empty", "csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "makeindex", "index", "check", "space", "empty", "maketitle", "verbatim", "do", "verb", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "clearpage", "global", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hopatch": ["noexpand"], "hpstatement": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "hrefhide": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hrlatex": ["inputencoding", "frenchspacing", "do", "expandafter", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "hsetup": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "hvfloat": ["DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "hwexam": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "expandafter"], "hycolor": ["noexpand", "noexpand"], "hypdestopt": ["csname", "empty", "noexpand", "expandafter", "empty"], "hypdoc": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "makeindex", "index", "check", "space", "empty", "maketitle", "verbatim", "do", "verb", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "clearpage", "global", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hypdvips": ["title", "begin", "end", "author", "noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "bookmarksetup", "pdfbookmark", "bookmarkget", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "clearpage", "global", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hyperref": ["appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hyperxmp": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "csname", "empty", "expandafter", "empty", "noexpand", "expandafter", "empty", "RequireXeTeX"], "hypgotoe": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "hyphenat": ["hyp"], "idxcmds": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "empty", "expandafter"], "idxlayout": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "ieeepes": ["setpapersize", "setmargins", "setmarginsrb"], "iffont": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "ifmslide": ["noexpand", "csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "ifoddpage": ["noexpand", "checkoddpage"], "ifplatform": ["expandafter", "csname", "empty"], "ifsym": ["Letter", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ifthen": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ifthenx": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ifvtex": ["empty"], "ifxetex": ["RequireXeTeX"], "imakeidx": ["printindex", "makeindex", "index", "RequireXeTeX"], "imfellEnglish": ["RequireXeTeX"], "impnattypo": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "import": ["import"], "indextools": ["xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color", "RequireXeTeX"], "infwarerr": ["check", "space", "empty"], "inputenc": ["inputencoding"], "inputenx": ["inputencoding"], "intcalc": ["csname", "empty"], "interactiveworkbook": ["xspace", "setkeys", "epsfbox", "psfig", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "interactiveworkbook-web": ["xspace", "setkeys", "epsfbox", "psfig", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "interchar": ["color"], "interfaces": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-LaTeX": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-appendix": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-base": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-bookmark": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "thepage", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-embedfile": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-enumitem": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-environ": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-etoolbox": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-fancyhdr": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-hypbmsec": ["addcontentsline", "check", "space", "empty", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-hyperref": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-makecell": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-marks": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-pgfkeys": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-scrlfile": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-tikz": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-titlesec": ["addcontentsline", "check", "space", "empty", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-tocloft": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "interfaces-umrand": ["check", "space", "empty", "newtoks", "reserveinserts", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "invitation": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "invitationfr": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "invoice": ["Fee", "ProjectTitle", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "ionumbers": ["setkeys"], "isodate": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "isodateo": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "isomath": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "isorot": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "isyntax": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "jamtimes": ["mathscr", "mathcal", "frak", "Bbb", "bold"], "jlabels": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "jslectureplanner": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "jsmembertable": ["hhline", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "jumplines": ["csname", "empty", "empty", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "empty", "cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "color", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "bookmarksetup", "pdfbookmark", "bookmarkget", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "check", "space", "empty", "csname", "empty", "csname", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "juraabbrev": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "jurabase": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "xspace", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "jurabib": ["setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "jurarsp": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "xspace", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "kantlipsum": ["color"], "karnaugh-map": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "karnaughmap": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "keycommand": ["csname", "noexpand", "empty", "newtoks", "reserveinserts", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "keyfloat": ["ifthenelse", "value", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "rotatebox", "subcaption", "subref", "newsubfloat", "subcaptionbox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "FloatBarrier", "expandafter", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "color", "par", "wrapfigure", "noexpand", "expandafter", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "keystroke": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "keyval": ["setkeys"], "keyvaltable": ["extrarowheight", "do", "multicolumn", "hskip", "arraystretch", "tabulinesep", "hfill", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "par", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "kmath": ["sqrt"], "knitting": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "koma-moderncvclassic": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "kotex-logo": ["hologo"], "kotexutf": ["inputencoding"], "ktv-texdata": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "kvdefinekeys": ["csname", "empty"], "kvoptions": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "kvoptions-patch": ["empty"], "kvoptions-test4": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "kvsetkeys": ["csname", "noexpand", "empty"], "l3basics": ["color"], "l3bootstrap": ["color"], "l3box": ["color"], "l3candidates": ["color"], "l3clist": ["color"], "l3coffins": ["color"], "l3color": ["color"], "l3expan": ["color"], "l3file": ["color"], "l3fp": ["color"], "l3galley": ["color"], "l3int": ["color"], "l3intarray": ["color"], "l3keys": ["color"], "l3keys2e": ["color"], "l3keysdemo": ["color"], "l3msg": ["color"], "l3names": ["color"], "l3prg": ["color"], "l3prop": ["color"], "l3quark": ["color"], "l3regex": ["color"], "l3regex-trace": ["color"], "l3seq": ["color"], "l3skip": ["color"], "l3sort": ["color"], "l3str": ["color"], "l3str-convert": ["color"], "l3str-format": ["color"], "l3tl": ["color"], "l3tl-analysis": ["color"], "l3tl-build": ["color"], "l3token": ["color"], "labyrinth": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ladder": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox"], "langsci-linguex": ["xspace"], "lapdf": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "latexbangla": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "markboth", "setdefaultlanguage", "color", "RequireXeTeX"], "latexdemo": ["csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "fbox", "color"], "latexgit": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "THEMONTH", "dateseparator", "yyyymmdddate", "usdate", "monthname", "csname", "settimeformat", "shortmonthname", "THEYEAR", "currenttime", "THEDAY", "newdateformat", "today", "csname", "setkeys", "RequireXeTeX"], "lato": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "layaureo": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "empty", "RequireXeTeX", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "layout": ["layout"], "lcg": ["rand", "setkeys"], "lcy": ["noexpand", "expandafter"], "leading": ["leading", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "leadsheets": ["color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "lengthconvert": ["color"], "letterspace": ["setkeys"], "lettrine": ["textcolor", "LettrineFontHook", "lettrine", "color", "setkeys"], "lexref": ["nomgroup", "nomenclature", "makenomenclature", "nomname", "nomlabel", "nomentryend", "nompreamble", "printnomenclature", "newcommandx", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "lfp": ["expandafter"], "libertine": ["RequireXeTeX"], "libertine-type1": ["RequireXeTeX"], "libertineMono": ["RequireXeTeX"], "libertineMono-type1": ["RequireXeTeX"], "libertineRoman": ["RequireXeTeX"], "libertinegc": ["RequireXeTeX", "noexpand", "expandafter"], "libertineotf": ["RequireXeTeX"], "libertinust1math": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "libgreek": ["setkeys"], "librebaskerville": ["RequireXeTeX"], "librecaslon": ["RequireXeTeX"], "libris": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "lilyglyphs": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "expandafter", "setlength", "adjustbox"], "lilyglyphsManualFonts": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color", "expandafter", "setlength", "adjustbox"], "lilyglyphsStyle": ["noexpand", "hologo", "csname", "empty", "csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "rotatebox", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "color", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "expandafter", "setlength", "adjustbox", "expandafter", "csname", "empty"], "limap": ["MapRuleWidth", "MapTitleFraction", "WideBlock", "MapParskip", "Block", "MapTextFraction", "MapContinuing", "MapContinued", "MapBlockLabelFont", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "linearA": ["xspace"], "linegoal": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "expandafter", "empty"], "lineno": ["linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "linguex": ["Next", "Last", "NNext", "label", "LLast", "xspace"], "linguho": ["xspace", "Next", "Last", "NNext", "label", "LLast"], "linop": ["bm", "color"], "linsys": ["ding", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "lipsum": ["lipsum", "setlipsumdefault"], "lisp-mod-l3regex": ["color"], "listings": ["lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys"], "listings-ext": ["setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "listingsutf8": ["csname", "empty", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "listlbls": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "listliketab": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "listofsymbols": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "liturg": ["setkeys", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "textcolor", "LettrineFontHook", "lettrine", "color"], "lltjcore": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "lltjfont": ["selectfont"], "lltjp-fontspec": ["color"], "lltjp-fontspec-immediate": ["color"], "lltjp-footmisc": ["multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect"], "lltjp-geometry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "lltjp-listings": ["setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "lltjp-stfloats": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "lltjp-unicode-math": ["color"], "lltjp-xunicode": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter"], "llyhyt2e": ["frenchspacing", "do", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "mathscr", "mathcal", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "EUR", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "lmodern": ["sfdefault", "rmdefault"], "locality": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "logicproof": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "logicpuzzle": ["selectfont", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "raggedleftmarginnote", "marginnote", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "Centering", "justifying", "RaggedRight"], "logpap": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "logreq": ["expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setkeys"], "longbox": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "longdivision": ["color"], "longfbox": ["vector", "Line", "line", "polyline", "polygon", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "longfigure": ["newpage"], "longtable": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "lpic": ["setkeys", "epsfbox", "psfig", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "lsc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "gray", "green", "red", "documentclass"], "lscape": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "lshort": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "csname", "stepcounter", "addtocounter", "text", "newtoks", "reserveinserts", "EUR", "frak", "Bbb", "bold", "hologo", "csname", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "inputencoding", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "sfdefault", "rmdefault", "mathscr", "mathcal", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "lshort-slovenian": ["inputencoding", "frenchspacing", "do", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "sfdefault", "rmdefault", "mathscr", "mathcal", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "EUR", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "lshort-vi": ["inputencoding", "frenchspacing", "do", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "mathscr", "mathcal", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "EUR", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold"], "lshort-zh-cn-style": ["selectfont", "csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "theadalign", "makecell", "theadset", "theadgape", "height", "setcellgapes", "diaghead", "Xhline", "arraystretch", "Gape", "theadfont", "thead", "makegapedcells", "cellgape", "printindex", "layout", "setkeys", "rotatebox", "empty", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "CTeX", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "color", "frak", "Bbb", "bold", "noexpand", "hologo", "frenchspacing", "do", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "protect", "subref", "subfloat", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "sfdefault", "rmdefault", "mathscr", "mathcal", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "multirow", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "csname", "empty"], "lstautogobble": ["setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "lstbayes": ["setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "lstdoc": ["ref", "protect", "label", "nameref", "pageref", "addcontentsline", "csname", "noexpand", "empty", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "thepage", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "lstlinebgrd": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "lt3graph": ["color"], "lt3graph-dry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "ltablex": ["caption", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "ltabptch": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "ltb2bib": ["xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "cite", "ndash", "bib", "color"], "ltj-latex": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "ltxcmds": ["expandafter", "empty"], "ltxdocext": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "do", "MakeShortVerb"], "ltxdockit": ["csname", "empty", "setkeys", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "noexpand", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "ltxindex": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "ltxnew": ["newtoks", "reserveinserts"], "ltxtable": ["arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "lua-check-hyphen": ["em", "textsubscript", "setlength", "csname", "setkeys", "rotatebox", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "color"], "luacolor": ["check", "space", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "luaindex": ["setkeys", "newpage", "clearpage"], "luainputenc": ["RequireXeTeX"], "lualatex-math": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "luamesh": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "luasseq": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox", "ding"], "luatexja-fontspec": ["color"], "luatexja-fontspec-24": ["color"], "luatexja-fontspec-25c": ["color"], "luatexja-preset": ["color"], "luatexja-zhfonts": ["color"], "luatexko": ["selectfont"], "luatextra": ["em", "textsubscript", "setlength", "csname", "setkeys", "rotatebox", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "color"], "luatodonotes": ["csname", "empty", "noexpand", "checkoddpage", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "rotatebox", "check", "space", "empty", "sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty"], "lwarp": ["csname", "empty", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "DeclareFloatingEnvironment", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "color", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "newunicodechar", "expandafter", "ifthenelse", "value", "csname", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "csname", "empty", "RequireXeTeX", "expandafter", "check", "space", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "thepage", "csname", "printindex", "addcontentsline", "setkeys", "rotatebox", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sfrac", "csname", "noexpand", "empty", "specialcomment", "includecomment", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "predate", "postdate", "thanks", "postauthor", "maketitle", "preauthor", "pretitle", "posttitle", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "lwarp-footnotehyper": ["footnote", "expandafter", "makesavenoteenv", "parbox"], "lxfonts": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "mafr": ["expandafter", "noexpand", "expandafter"], "mailmerge": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "makebarcode": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "makebase": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "makecell": ["theadalign", "makecell", "theadset", "theadgape", "height", "setcellgapes", "diaghead", "Xhline", "arraystretch", "Gape", "theadfont", "thead", "makegapedcells", "cellgape", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "makeidx": ["printindex"], "makeplot": ["expandafter", "gray", "green", "red", "documentclass"], "makeshape": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "mandi": ["csname", "empty", "intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "vv", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "epstopdfsetup", "epstopdfDeclareGraphicsRule", "setkeys", "newcommandx", "rotatebox", "empty", "AppendGraphicsExtensions", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "color", "frak", "Bbb", "bold", "noexpand", "frenchspacing", "do", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "check", "space", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "oiint", "varoiint", "int", "oint", "iiint", "iint", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "cancelto", "cancel", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "expandafter", "expandafter", "csname", "empty"], "manuscript": ["selectfont", "sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl", "noexpand", "expandafter", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "Centering", "justifying", "RaggedRight"], "marginnote": ["raggedleftmarginnote", "marginnote"], "markdown": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "marvosym": ["Letter", "Mobilefone", "Telefon", "Mundus"], "mathastext": ["implies", "Huge", "mathrm"], "mathdesign": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "noexpand", "expandafter"], "mathenv": ["multicolumn", "hline", "cline"], "mathexam": ["ExamClass", "ExamInstrBox", "ExamName", "ExamHead", "answer", "ExamNameLine", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "mathpartir": ["setkeys"], "mathpazo": ["mathbb", "Big", "big"], "mathptmx": ["bigg", "Big", "big", "rmdefault"], "mathspec": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color", "RequireXeTeX"], "mathtools": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "matlab-prettifier": ["mlttfamily", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "mattens": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "maybemath": ["bm", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "mcexam": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "mdframed": ["newmdtheoremenv", "csname", "noexpand", "empty", "check", "space", "empty", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "empty", "expandafter", "empty", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "empty", "csname", "noexpand", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "mdsymbol": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "mdwmath": ["bigg"], "mdwtab": ["multicolumn", "hline", "cline"], "media9": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "color"], "memhangul-common": ["color"], "memhangul-ucs": ["color"], "memhangul-x": ["color"], "memhfixc": ["caption"], "memucs-interword-x": ["RequireXeTeX"], "menu": ["HandRight", "XSolidBrush", "Checkmark", "doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "xspace", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "menukeys": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "usepackage", "documentclass", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "color", "expandafter", "setlength", "adjustbox"], "merriweather": ["RequireXeTeX"], "metakeys": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setkeys"], "metalogo": ["XeLaTeX", "LaTeX", "TeX", "XeTeX", "setkeys", "csname", "rotatebox", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "metre": ["smaller", "mathlarger"], "metrix": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "mfirstuc": ["expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "mfirstuc-english": ["expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "mfpdoc": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "mftinc": ["setkeys"], "mgltex": ["setkeys", "csname", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "mhchem": ["ce", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "color", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "mhsetup": ["expandafter"], "miama": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "microtype": ["lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "setkeys"], "mikoaffiliation": ["expandafter"], "mikoslides": ["csname", "empty", "setkeys", "rotatebox", "empty", "csname", "stepcounter", "addtocounter", "text", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "renewcommand", "frak", "Bbb", "bold", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "label", "newshadedtheorem", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "xspace", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "miller": ["hkl"], "minexample": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "minibox": ["color"], "minidocument": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "minimum": ["inputencoding", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "frak", "Bbb", "bold", "frenchspacing", "do", "csname", "hhline", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "gray", "green", "red", "documentclass"], "miniplot": ["setkeys", "epsfbox", "psfig", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "minitoc": ["dominitoc", "minitoc", "adjustmtc", "listoffigures", "section", "mtcaddchapter", "tableofcontents", "listoftables", "addstarredchapter"], "minorrevision": ["externaldocument", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "minted": ["csname", "inputminted", "expandafter", "setminted", "usemintedstyle", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "expandafter", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "fbox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "minted1": ["expandafter", "setkeys", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "mintspirit": ["RequireXeTeX"], "mintspirit2": ["RequireXeTeX"], "minutes": ["xspace", "setkeys", "dominitoc", "minitoc", "adjustmtc", "listoffigures", "section", "mtcaddchapter", "tableofcontents", "listoftables", "addstarredchapter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "misccorr": ["section", "subsection", "makelabel", "frak", "Bbb", "bold"], "missaali": ["noexpand", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "color", "RequireXeTeX", "empty", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "mlp-49": ["today"], "mlp-49n": ["tablename", "bibname", "figurename", "indexname", "captionsngerman", "glqq", "today"], "mls": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter", "inputencoding"], "mnotes": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "moderncvcollection": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "moderncvcompatibility": ["firstname", "familyname", "cvline", "maketitle", "cvlanguage", "phone", "moderncvstyle", "section", "cvitem", "mobile", "moderncvtheme"], "moderncvdebugtools": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "moderncviconsawesome": ["RequireXeTeX"], "moderncviconsmarvosym": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "moderntimeline": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "modiagram": ["setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "modref": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "modroman": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "modular": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "import"], "modules": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color"], "montserrat": ["noexpand", "expandafter"], "moodle": ["csname", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newtoks", "reserveinserts", "color", "frak", "Bbb", "bold", "expandafter", "csname", "empty", "expandafter", "xpatchcmd"], "moreenum": ["frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "setkeys", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "morefloats": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "moresize": ["Huge"], "morewrites": ["color"], "movie15": ["setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "mpgraphics": ["expandafter", "setkeys", "csname", "rotatebox", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "mpostinl": ["setkeys", "csname", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "msc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "multiaudience": ["csname", "expandafter"], "multibib": ["bibliography", "newcites"], "multicap": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "multicol": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "multimedia": ["setkeys"], "multimediasymbols": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "multiobjective": ["frak", "Bbb", "bold"], "multirow": ["multirow"], "multitoc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "mup": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "mwe": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "mychemistry": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "newpage", "clearpage", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "mycv_dec": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "mycv_style": ["csname", "empty", "setkeys", "ttdefault", "sfdefault", "rmdefault", "empty", "empty", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "color", "ding", "frak", "Bbb", "bold", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "Letter", "Mobilefone", "Telefon", "Mundus", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "csname", "empty"], "nameauth": ["newcommandx", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter"], "nameref": ["ref", "protect", "label", "nameref", "pageref", "addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "thepage"], "nanumfontsel": ["noexpand", "expandafter"], "natbib": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "nath": ["overline", "delimgrowth", "quad", "underline", "label", "sum", "qquad", "prod", "frac", "underbrace", "vert"], "natmove": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "nbaseprt": ["np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "nccbbb": ["bbbe", "bbbr"], "nccindex": ["columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "ncclatex": ["frenchspacing", "do", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "frac"], "nccltrus": ["expandafter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "nccmath": ["frac", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "nccold": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "frac", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "nccpic": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "nccthm": ["frenchspacing", "do"], "neuralnetwork": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "expandafter"], "newclude": ["include", "documentclass"], "newfile": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "newfloat": ["DeclareFloatingEnvironment", "setkeys"], "newlattice": ["mathscr", "mathcal", "xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "makelabel", "frak", "Bbb", "bold"], "newlfont": ["em"], "newproof": ["frak", "Bbb", "bold"], "newpxmath": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "newpxtext": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "noexpand", "expandafter"], "newtxmath": ["bigg", "bigcup", "int", "Bigg", "csname", "sqrt", "vdots", "ddots", "mapsto", "surd", "hbar", "sum", "prod", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "newtxsf": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "newtxtext": ["textsc", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "noexpand", "expandafter"], "newtxtt": ["noexpand", "expandafter"], "newunicodechar": ["newunicodechar"], "nfssext-cfr": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ngerman": ["tablename", "bibname", "figurename", "indexname", "captionsngerman", "glqq", "today"], "nicefrac": ["nicefrac", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "niceframe": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "nimbusmono": ["noexpand", "expandafter"], "nimbusmononarrow": ["noexpand", "expandafter"], "nimbussans": ["noexpand", "expandafter"], "nimbusserif": ["noexpand", "expandafter"], "nmbib": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "nodetree": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "noindentafter": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "noindentafter-dry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "nomencl": ["nomgroup", "nomenclature", "makenomenclature", "nomname", "nomlabel", "nomentryend", "nompreamble", "printnomenclature"], "nomentbl": ["nomgroup", "nomenclature", "makenomenclature", "nomname", "nomlabel", "nomentryend", "nompreamble", "printnomenclature", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "nonfloat": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "notes": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "notes2bib": ["color"], "noto": ["RequireXeTeX"], "novel-FontDefaults": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "markboth", "setdefaultlanguage", "setkeys", "color", "RequireXeTeX"], "novel-HeadFootStyles": ["sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "novel-LayoutSettings": ["color"], "novel-pdfx": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "novices-a4paper": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "framebreak", "newstaticframe", "newflowframe", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "clearpage", "afterpage", "setkeys", "rotatebox", "empty", "RequireXeTeX", "expandafter"], "nowidow": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "nox": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "nshyper": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "nth": ["nth", "thesection"], "ntheorem": ["label", "newshadedtheorem", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "nuc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "nucleardata": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "DeclareFloatingEnvironment", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "expandafter", "setkeys", "color", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "numprint": ["np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "numprint032": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "numspell": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "empty"], "ocg-p": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "RequireXeTeX", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG"], "ocgbase": ["color"], "ocgx": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "RequireXeTeX", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG"], "ocgx2": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "ocr": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "omdoc": ["xspace", "setkeys", "specialcomment", "includecomment", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "omtext": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color"], "onlyamsmath": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "opcit": ["xspace"], "opensans": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "oplotsymbl": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "optidef": ["ifthenelse", "value", "intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "color", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "options": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "ot-tableau": ["HandRight", "XSolidBrush", "Checkmark", "frak", "Bbb", "bold", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "hline", "hdashline", "cline", "multicolumn", "arrayrulecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "otf": ["setkeys"], "othelloboard": ["setkeys", "csname", "vector", "Line", "line", "polyline", "polygon", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "outlines": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "overlays": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter"], "overlock": ["RequireXeTeX"], "overpic": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "oz": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "pagecolor": ["pagecolor", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "pagegrid": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "pageslts": ["thepage", "pagenumbering", "check", "space", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "makeindex", "index"], "papercdcase": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "papermas": ["check", "space", "empty", "csname", "empty", "thepage", "pagenumbering", "clearpage", "global", "csname", "empty", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "makeindex", "index"], "paracol": ["switchcolumn"], "parallel": ["ParallelPar", "ParallelRText", "ParallelLText"], "paratype": ["setkeys"], "parcolumns": ["setkeys"], "paresse": ["RequireXeTeX"], "parrun": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "pas-cv": ["expandafter", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "rotatebox", "empty", "RequireXeTeX", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry"], "pas-tableur": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pauldoc": ["expandafter", "inputencoding", "noexpand", "expandafter"], "pax": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "empty", "setkeys", "expandafter", "empty", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pbox": ["pbox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "pbsi": ["bsifamily"], "pdata": ["xspace", "setkeys", "EUR", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "pdfbase": ["color"], "pdfcolmk": ["expandafter"], "pdfcolparallel": ["ParallelPar", "ParallelRText", "ParallelLText", "check", "space", "empty", "setkeys"], "pdfcolparcolumns": ["check", "space", "empty", "setkeys"], "pdfcomment": ["check", "space", "empty", "csname", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "raggedleftmarginnote", "marginnote", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "thepage"], "pdfcprot": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "pdfescape": ["noexpand", "expandafter", "empty"], "pdflscape": ["csname", "RequireXeTeX", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pdfnotiz": ["raggedleftmarginnote", "marginnote"], "pdfpagediff": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "csname", "empty", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "pdfpagediff-doc": ["noexpand", "csname", "empty", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "rotatebox", "empty", "RequireXeTeX", "do", "MakeShortVerb", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "specialcomment", "includecomment", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "frak", "Bbb", "bold", "csname", "empty"], "pdfpages": ["includepdf", "includegraphics", "addcontentsline", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "pdfscreen": ["csname", "empty", "setkeys", "rotatebox", "expandafter", "selectfont", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "specialcomment", "includecomment", "frak", "Bbb", "bold", "noexpand", "csname", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "do", "MakeShortVerb", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "pdfslide": ["csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "frak", "Bbb", "bold", "noexpand", "csname", "frenchspacing", "do", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "pdfswitch": ["sfdefault", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "pdftexcmds": ["csname", "empty"], "pdftricks": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "pdftricks2": ["expandafter", "setkeys", "csname", "rotatebox", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "gray", "green", "red", "documentclass"], "pdfwidgets": ["red", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pdfwin": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "frak", "Bbb", "bold", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "pdfx": ["RequireXeTeX", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "perfectcut": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "person": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "pfarrei": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "includepdf", "includegraphics", "addcontentsline", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "pgf": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgf-soroban": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "pgf-spectra": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgf-umlcd": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgf-umlsd": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfarrows": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfautomata": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbaseimage": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbaselayers": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbasematrix": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbasepatterns": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbaseplot": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbaseshapes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfbasesnakes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfcore": ["setkeys", "csname", "rotatebox", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pgfgantt": ["setganttlinklabel", "newganttchartelement", "ganttset", "gantttitlelist", "ganttlink", "gantttitlecalendar", "gantttitle", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfheaps": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibraryarrows": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibraryautomata": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibraryplothandlers": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibraryplotmarks": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibraryshapes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibrarysnakes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibrarytikzbackgrounds": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgflibrarytikztrees": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfmanualstyle": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfmolbio": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pgfnodes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfopts": ["expandafter"], "pgfornament": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "setkeys", "rotatebox"], "pgfpages": ["pgfpagesphysicalpageoptions", "pgfpagesdeclarelayout", "pgfpageoptionborder", "pgfpageslogicalpageoptions", "pgfpagesuselayout", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox"], "pgfpict2e": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfplots": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pgfplotsoldpgfsupp_tikzexternal": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "pgfplotstable": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox"], "pgfregressiontest": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfshade": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgfsubpic": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "pgftree": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "phffullpagefigure": ["clearpage", "afterpage", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "FloatBarrier", "expandafter", "noexpand", "checkoddpage"], "phfnote": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "phfparen": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "frenchspacing", "do", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "color", "expandafter"], "phfqit": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "phfsvnwatermark": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "phfthm": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "philex": ["xspace", "Next", "Last", "NNext", "label", "LLast", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "philokalia": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "textsuperscript", "textsubscript", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "setkeys", "color", "rotatebox", "RequireXeTeX", "textcolor", "LettrineFontHook", "lettrine", "color"], "phonenumbers": ["expandafter", "empty", "color"], "physics": ["dmat", "curl", "dv", "det", "Tr", "ket", "bra", "div", "qty", "mel", "norm", "pdv", "qq", "Re", "log", "vb", "poissonbracket", "cos", "dd", "tan", "mqty", "abs", "order", "cot", "cross", "comm", "eval", "pmat", "ip", "braket", "cosh", "exp", "sin", "Im", "sinh", "expval", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "color", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "pict2e": ["vector", "Line", "line", "polyline", "polygon"], "pifont": ["ding"], "pinlabel": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "pkgloader": ["color"], "pkgloader-dry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "placeat": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "color"], "placeins": ["FloatBarrier", "expandafter"], "plantslabels": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "plates": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "plextarray": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "plextdelarray": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "pml3array": ["color"], "poetrytex": ["cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "color"], "polyglossia": ["markboth", "setdefaultlanguage", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color", "RequireXeTeX"], "polynom": ["setkeys"], "polynomial": ["setkeys"], "polytable": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "powerdot-BerlinFU": ["selectfont", "csname", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "sfdefault", "rotatebox", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Centering", "justifying", "RaggedRight", "ding"], "powerdot-aggie": ["ttdefault", "sfdefault", "rmdefault", "ding", "gray", "green", "red", "documentclass"], "powerdot-bframe": ["ding", "gray", "green", "red", "documentclass"], "powerdot-ciment": ["ding"], "powerdot-clemson": ["gray", "green", "red", "documentclass"], "powerdot-default": ["ding"], "powerdot-elcolors": ["ding"], "powerdot-fyma": ["gray", "green", "red", "documentclass"], "powerdot-horatio": ["ding"], "powerdot-husky": ["ttdefault", "sfdefault", "rmdefault", "ding", "gray", "green", "red", "documentclass"], "powerdot-ikeda": ["ding", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "powerdot-jefka": ["ding"], "powerdot-klope": ["ding", "gray", "green", "red", "documentclass"], "powerdot-paintings": ["ttdefault", "sfdefault", "rmdefault", "ding"], "powerdot-pazik": ["ding", "gray", "green", "red", "documentclass"], "powerdot-sailor": ["frak", "Bbb", "bold", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "powerdot-simple": ["ding", "frak", "Bbb", "bold"], "powerdot-tycja": ["ding", "gray", "green", "red", "documentclass"], "powerdot-upen": ["ding", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "prerex": ["csname", "empty", "setkeys", "rotatebox", "empty", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "noexpand", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "smaller", "mathlarger", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "presentation": ["setkeys", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "pressrelease-symbols": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "Letter", "Mobilefone", "Telefon", "Mundus", "setkeys", "rotatebox"], "prettyref": ["prettyref", "newrefformat"], "primargs": ["color"], "proba": ["frak", "Bbb", "bold"], "problem": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "expandafter"], "probsoln": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "processkv": ["setkeys"], "productbox": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "progressbar": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "proofread": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "raggedleftmarginnote", "marginnote", "setkeys", "rotatebox", "sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "prooftrees": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "noexpand", "forestset", "expandafter", "bracketset", "newtoks", "reserveinserts", "color", "frak", "Bbb", "bold"], "properties": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter", "expandafter"], "psbao": ["frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "forloop", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "newtoks", "reserveinserts", "frak", "Bbb", "bold", "gray", "green", "red", "documentclass"], "pseudocode": ["doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "psfrag": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "psfragx": ["csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "psgo": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "pst-3d": ["gray", "green", "red", "documentclass"], "pst-3dplot": ["gray", "green", "red", "documentclass"], "pst-abspos": ["gray", "green", "red", "documentclass"], "pst-all": ["gray", "green", "red", "documentclass"], "pst-am": ["np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "gray", "green", "red", "documentclass"], "pst-arrow": ["gray", "green", "red", "documentclass"], "pst-asr": ["gray", "green", "red", "documentclass"], "pst-bar": ["gray", "green", "red", "documentclass"], "pst-barcode": ["gray", "green", "red", "documentclass"], "pst-bezier": ["color", "gray", "green", "red", "documentclass"], "pst-blur": ["gray", "green", "red", "documentclass"], "pst-calendar": ["expandafter", "gray", "green", "red", "documentclass"], "pst-char": ["gray", "green", "red", "documentclass"], "pst-cie": ["gray", "green", "red", "documentclass"], "pst-circ": ["gray", "green", "red", "documentclass"], "pst-coil": ["gray", "green", "red", "documentclass"], "pst-coxcoor": ["gray", "green", "red", "documentclass"], "pst-coxeterp": ["gray", "green", "red", "documentclass"], "pst-diffraction": ["gray", "green", "red", "documentclass"], "pst-electricfield": ["gray", "green", "red", "documentclass"], "pst-eps": ["gray", "green", "red", "documentclass"], "pst-eucl": ["gray", "green", "red", "documentclass"], "pst-exa": ["csname", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "csname", "noexpand", "empty", "expandafter", "empty", "RequireXeTeX", "expandafter", "noexpand", "expandafter", "empty", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "pst-fill": ["gray", "green", "red", "documentclass"], "pst-fit": ["gray", "green", "red", "documentclass"], "pst-fractal": ["gray", "green", "red", "documentclass"], "pst-fun": ["gray", "green", "red", "documentclass"], "pst-func": ["gray", "green", "red", "documentclass"], "pst-gantt": ["gray", "green", "red", "documentclass"], "pst-geo": ["gray", "green", "red", "documentclass"], "pst-gr3d": ["gray", "green", "red", "documentclass"], "pst-grad": ["gray", "green", "red", "documentclass"], "pst-intersect": ["gray", "green", "red", "documentclass"], "pst-key": ["gray", "green", "red", "documentclass"], "pst-knot": ["gray", "green", "red", "documentclass"], "pst-labo": ["gray", "green", "red", "documentclass"], "pst-layout": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pst-lens": ["gray", "green", "red", "documentclass"], "pst-light3d": ["gray", "green", "red", "documentclass"], "pst-magneticfield": ["gray", "green", "red", "documentclass"], "pst-mirror": ["gray", "green", "red", "documentclass"], "pst-news": ["csname", "empty", "empty", "empty", "Centering", "justifying", "RaggedRight", "csname", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass", "selectfont", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "printindex", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "csname", "noexpand", "empty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "pst-node": ["gray", "green", "red", "documentclass"], "pst-ob3d": ["gray", "green", "red", "documentclass"], "pst-ode": ["gray", "green", "red", "documentclass"], "pst-optexp": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "gray", "green", "red", "documentclass"], "pst-optic": ["gray", "green", "red", "documentclass"], "pst-osci": ["gray", "green", "red", "documentclass"], "pst-pad": ["gray", "green", "red", "documentclass"], "pst-pdf": ["setkeys", "csname", "RequireXeTeX", "empty", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pst-perspective": ["gray", "green", "red", "documentclass"], "pst-platform": ["expandafter", "csname", "empty"], "pst-platon": ["gray", "green", "red", "documentclass"], "pst-plot": ["gray", "green", "red", "documentclass"], "pst-poly": ["gray", "green", "red", "documentclass"], "pst-pulley": ["gray", "green", "red", "documentclass"], "pst-rubans": ["gray", "green", "red", "documentclass"], "pst-shell": ["gray", "green", "red", "documentclass"], "pst-sigsys": ["gray", "green", "red", "documentclass"], "pst-slpe": ["gray", "green", "red", "documentclass"], "pst-solarsystem": ["gray", "green", "red", "documentclass"], "pst-solides3d": ["gray", "green", "red", "documentclass"], "pst-soroban": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "pst-spectra": ["gray", "green", "red", "documentclass"], "pst-spinner": ["gray", "green", "red", "documentclass"], "pst-spirograph": ["gray", "green", "red", "documentclass"], "pst-stru": ["gray", "green", "red", "documentclass"], "pst-text": ["gray", "green", "red", "documentclass"], "pst-thick": ["gray", "green", "red", "documentclass"], "pst-tools": ["gray", "green", "red", "documentclass"], "pst-tree": ["gray", "green", "red", "documentclass"], "pst-tvz": ["gray", "green", "red", "documentclass"], "pst-uml": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "pst-vowel": ["gray", "green", "red", "documentclass"], "pst-vue3d": ["gray", "green", "red", "documentclass"], "pstcol": ["gray", "green", "red", "documentclass"], "pstool": ["expandafter", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter"], "pstricks": ["gray", "green", "red", "documentclass"], "pstricks-add": ["gray", "green", "red", "documentclass"], "pstricks-pdf": ["expandafter", "csname", "csname", "empty", "setkeys", "RequireXeTeX", "empty", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "gray", "green", "red", "documentclass"], "psu-thesis": ["onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "psvectorian": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "gray", "green", "red", "documentclass"], "ptext": ["newpage"], "ptmxcomp": ["setkeys", "csname", "stepcounter", "addtocounter", "text", "csname", "frenchspacing", "do", "rotatebox", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "pxbabel": ["setkeys"], "pxchfon": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "pxeverysel": ["selectfont"], "pxftnright": ["footnotesize"], "pxjafont": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "pxjahyper": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "pxrubrica": ["setkeys"], "pygmentex": ["check", "space", "empty", "csname", "empty", "empty", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "color", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "pythonhighlight": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "pythontex": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "DeclareFloatingEnvironment", "expandafter", "setkeys", "linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "qbookman": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "qcm": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "qcourier": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "qpalatin": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "qrcode": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "qstest": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "qswiss": ["csname", "noexpand", "empty", "sfdefault", "csname", "noexpand", "empty", "expandafter", "empty"], "qtimes": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "qtree": ["qroof", "Tree"], "quattrocento": ["RequireXeTeX"], "quicktype": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "quotchap": ["color", "qauthor", "chapter"], "quoting": ["par", "csname", "noexpand", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "quran": ["newpage"], "qzapfcha": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "ragged2e": ["Centering", "justifying", "RaggedRight", "selectfont"], "raleway": ["RequireXeTeX"], "raleway-type1-autoinst": ["noexpand", "expandafter"], "ran_toks": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "randbild": ["gray", "green", "red", "documentclass"], "randomwalk": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "rccol": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "rdfmeta": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color"], "readarray": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "realboxes": ["Rotatebox", "doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "realscripts": ["color"], "rec-thy": ["ifthenelse", "value", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Letter", "Mobilefone", "Telefon", "Mundus", "frak", "Bbb", "bold"], "refcount": ["thepage"], "refenums": ["noexpand", "csname", "empty", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "refstepcounter", "crefname", "csname", "Crefname", "expandafter", "crefmultiformat", "creflastconjunction", "crefdefaultlabelformat", "crefrangeconjunction", "label", "crefformat", "creflabelformat", "cref", "crefrangeformat", "labelcref", "Cref", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "reflectgraphics": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "refstyle": ["setkeys"], "regexpatch": ["xpatchcmd", "color"], "register": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "regstats": ["clearpage", "global", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "relaycircuit": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "reledmac": ["selectfont", "newcommandx", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "RequireXeTeX", "Centering", "justifying", "RaggedRight"], "reledpar": ["xspace"], "relsize": ["smaller", "mathlarger"], "remarkbox": ["setkeys", "newpage", "clearpage"], "reotex": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "repeatindex": ["clearpage", "afterpage", "printindex"], "repltext": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "rerunfilecheck": ["makeindex", "index", "csname", "noexpand", "empty", "check", "space", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "clearpage", "global", "csname", "empty"], "resizegather": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "revquantum": ["csname", "empty", "ket", "bra", "braket", "ketbra", "setkeys", "rotatebox", "empty", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "frak", "Bbb", "bold", "listalgorithmname", "listofalgorithms", "noexpand", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "algnewcommand", "csname", "algblockdefx", "algrenewcommand", "Comment", "algrenewtext", "BState", "algtext", "algdef", "algloopdefx", "Statex", "algblock", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "csname", "empty"], "ribbonproofs": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts", "setkeys", "rotatebox"], "rjlpshap": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "forloop"], "roboto": ["RequireXeTeX"], "romanbarpagenumber": ["csname", "noexpand", "empty", "ifthenelse", "value", "csname", "noexpand", "empty", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "romande": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "romannum": ["thefootnote"], "rotating": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "rotfloat": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "rotpages": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "rputover": ["gray", "green", "red", "documentclass"], "rrgtrees": ["gray", "green", "red", "documentclass"], "rsc": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "rsphrase": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "rterface": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "ruby": ["selectfont"], "rule-D": ["color"], "russ": ["xspace", "inputencoding"], "rvdtx": ["csname", "empty", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "empty", "empty", "csname", "noexpand", "empty", "specialcomment", "includecomment", "frak", "Bbb", "bold", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "rviewport": ["setkeys"], "sa-tikz": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "sanitize-umlaut.doc": ["csname", "empty", "empty", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "empty", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "expandafter", "check", "space", "empty", "csname", "empty", "lipsum", "setlipsumdefault", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "inputencoding", "csname", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "noexpand", "csname", "par", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "noexpand", "expandafter", "refstepcounter", "crefname", "csname", "Crefname", "expandafter", "crefmultiformat", "creflastconjunction", "crefdefaultlabelformat", "crefrangeconjunction", "label", "crefformat", "creflabelformat", "cref", "crefrangeformat", "labelcref", "Cref", "sfdefault", "rmdefault", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "sansmath": ["expandafter"], "savesym": ["savesymbol"], "sbl-paper": ["cite", "selectfont", "csname", "empty", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "par", "setkeys", "empty", "empty", "expandafter", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "Centering", "justifying", "RaggedRight", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "noexpand", "empty", "newpage", "clearpage", "noexpand", "frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect", "csname", "noexpand", "empty", "csname", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "bibopenparen", "keyword", "csname", "iffieldundef", "bibopenbracket", "list", "do", "bibclosebracket", "nocite", "expandafter", "break", "newblockpunct", "section", "item", "nolinkurl", "ifentrytype", "bibcloseparen", "name", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "printindex", "makeindex", "index", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "titlecontents", "newpage", "startcontents", "contentslabel", "contentspage", "csname", "contentsmargin", "expandafter", "printcontents", "filcenter", "thecontentslabel", "numberline", "titlerule", "dottedcontents", "contentsuse", "csname", "empty"], "scalebar": ["expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "scalerel": ["scaleto"], "scanpages": ["expandafter", "setkeys", "csname", "rotatebox", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "schemabloc": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "schule": ["selectfont", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "Centering", "justifying", "RaggedRight", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "EUR", "par", "wrapfigure", "noexpand", "expandafter", "frak", "Bbb", "bold", "ifthenelse", "value", "ccbynd", "ccbysa", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "multirow", "cancelto", "cancel", "expandafter"], "schulinf": ["selectfont", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "Centering", "justifying", "RaggedRight", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "EUR", "par", "wrapfigure", "noexpand", "expandafter", "frak", "Bbb", "bold", "ifthenelse", "value", "ccbynd", "ccbysa", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "multirow", "cancelto", "cancel", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "schulphy": ["selectfont", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "Centering", "justifying", "RaggedRight", "csname", "noexpand", "empty", "newtoks", "reserveinserts", "EUR", "color", "par", "wrapfigure", "noexpand", "expandafter", "frak", "Bbb", "bold", "unitfrac", "unit", "ifthenelse", "value", "ccbynd", "ccbysa", "ce", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "nicefrac", "multirow", "cancelto", "cancel", "expandafter"], "schwalbe": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "sclang-prettifier": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "scratch": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "scrbase": ["setkeys", "newpage", "clearpage"], "scrdate": ["KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "screenplay-pkg": ["onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "scrextend": ["footref", "and", "cleardoublepage", "thefootnote", "maketitle", "subtitle", "thefootnotemark", "titlefont", "deffootnote", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrhack": ["xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "color", "newpage", "clearpage"], "scrjura": ["KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrkbase": ["KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrlayer": ["pagemark", "automark", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrlayer-notecolumn": ["pagemark", "automark", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrlayer-scrpage": ["cofoot", "clearpairofpagestyles", "rofoot", "ihead", "cfoot", "lofoot", "pagemark", "automark", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrletter": ["pagemark", "automark", "cofoot", "clearpairofpagestyles", "rofoot", "ihead", "cfoot", "lofoot", "KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrlfile": ["newpage", "clearpage"], "scrpage2": ["ifoot", "setheadsepline", "pagemark", "headfont", "clearscrplain", "clearscrheadings", "clearscrheadfoot", "ihead", "cfoot", "ofoot", "ohead", "chead", "automark"], "scrtime": ["KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "scrwfile": ["setkeys", "newpage", "clearpage"], "scsnowman": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "sctkzsym-base": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "sdrt": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "sectionbox": ["doublebox", "thisfancypage", "shadowbox", "TheSbox", "VerbatimEnvironment", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "sectsty": ["raggedright", "sectionfont", "subsectionfont", "underline", "paragraph", "interlinepenalty", "chapterfont", "subsubsectionfont", "allsectionsfont", "section", "subsection", "subsubsection"], "seealso": ["csname", "noexpand", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "selinput": ["inputencoding", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "sem-dem": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "semantic-markup": ["frak", "Bbb", "bold", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "setkeys", "csname", "color", "csname", "stepcounter", "addtocounter", "text", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter"], "semioneside": ["clearpage", "afterpage"], "semtrans": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "serbian-apostrophe": ["xspace", "textipa"], "serbian-lig": ["xspace"], "sesamanuel": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "frenchspacing", "do", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "mathbb", "Big", "big", "setkeys", "sfdefault", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "multirow", "newtoks", "reserveinserts", "EUR", "ding", "expandafter", "expandafter", "frak", "Bbb", "bold"], "sesamanuelTIKZ": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "vv", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts", "setkeys", "rotatebox"], "sesstime": ["setkeys"], "setdeck": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "setspace": ["onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "sfg": ["expandafter", "gray", "green", "red", "documentclass"], "sgame": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "sgamevar": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "shadethm": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "shadowtext": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "shdoc": ["csname", "empty", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "smaller", "mathlarger", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "shortvrb": ["do", "MakeShortVerb"], "showexpl": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "rotatebox"], "showframe": ["LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setkeys", "AtBeginShipout", "AtBeginShipoutNext", "empty"], "showkeys": ["label"], "sidecap": ["sidecaptionvpos", "caption", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "sidenotes": ["raggedleftmarginnote", "marginnote", "setkeys", "color", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter"], "signchart": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "silence": ["WarningFilter", "WarningsOff"], "simplecd": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "simpler-wick": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "setkeys", "rotatebox"], "simurgh": ["csname", "empty", "empty", "csname", "noexpand", "empty", "color", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "check", "space", "empty"], "simurgh-footnotes": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "simurgh-ltx": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "simurgh-shellescape": ["csname", "empty"], "sistyle": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do"], "siunitx": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "skak": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setboardfontencoding"], "skb": ["frenchspacing", "do", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "THEMONTH", "dateseparator", "yyyymmdddate", "usdate", "monthname", "csname", "settimeformat", "shortmonthname", "THEYEAR", "currenttime", "THEDAY", "newdateformat", "today", "csname", "setkeys", "RequireXeTeX", "processifversion", "includeversion", "excludeversion", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "skeyval-testpkg": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "skmath": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sfrac", "color", "frak", "Bbb", "bold", "frenchspacing", "do", "csname", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "expandafter"], "skrapport-colortheme-cruelwater": ["color"], "skrapport-colortheme-default": ["color"], "skrapport-colortheme-skdoc": ["color"], "skrapport-colortheme-unscathed": ["color"], "skrapport-colortheme-violet": ["color"], "skrapport-size-common": ["color"], "skt": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "smaller", "mathlarger"], "slantsc": ["scshape", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "smartdiagram": ["usesmartdiagramlibrary", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "smartunits": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "color", "frenchspacing", "do", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "smptalk": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "smultiling": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color"], "snotez": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "raggedleftmarginnote", "marginnote", "expandafter"], "songbook": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "songs": ["setkeys"], "soton-beamer": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "soton-palette": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "soul": ["sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl"], "soulpos": ["setkeys"], "soup": ["color"], "sourcecodepro": ["RequireXeTeX"], "sourcecodepro-type1-autoinst": ["noexpand", "expandafter"], "sourcesanspro": ["RequireXeTeX"], "sourcesanspro-type1-autoinst": ["noexpand", "expandafter"], "sourceserifpro": ["RequireXeTeX"], "sourceserifpro-type1-autoinst": ["noexpand", "expandafter"], "spalign": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "sparklines": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "spath3": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "color", "rotatebox"], "spelling": ["AtBeginShipout", "AtBeginShipoutNext", "empty"], "spot": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "spotcolor": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "spreadtab": ["expandafter"], "sproof": ["xspace", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter"], "srcltx": ["bibliography", "input", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "sref": ["xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setkeys"], "sseq": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox", "ding"], "stackengine": ["expandafter", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "stackrel": ["stackrel", "empty"], "stampinclude": ["csname", "empty"], "standalone": ["renewcommand", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "stanli": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "newcommandx", "rotatebox"], "statements": ["csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "label", "newshadedtheorem", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "expandafter"], "statex": ["bm", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "statex2": ["bm", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "statistik": ["setkeys"], "steinmetz": ["vector", "Line", "line", "polyline", "polygon"], "stex": ["csname", "empty", "setkeys", "empty", "csname", "stepcounter", "addtocounter", "text", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "label", "newshadedtheorem", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "xspace", "expandafter"], "structview": ["csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color"], "strukdoc": ["ref", "protect", "label", "nameref", "pageref", "addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "thepage", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "struktex": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "struktxp": ["UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "stubs": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "textblockorigin", "color"], "studenthandouts": ["frenchspacing", "do", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "setkeys", "RequireXeTeX", "empty"], "subcaption": ["subcaption", "subref", "newsubfloat", "subcaptionbox", "setkeys", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand"], "subdocs": ["setkeys"], "subfig": ["protect", "subref", "subfloat", "setkeys"], "subfigmat": ["subfigure", "subfigure", "subref"], "subfigure": ["subfigure", "subref"], "subfiles": ["subfile", "documentclass", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "subscript": ["textsubscript"], "substances": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "frenchspacing", "do", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "newpage", "clearpage", "si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "color"], "supertabular": ["tablelasttail", "tabletail", "tablefirsthead", "tablehead"], "svg": ["expandafter", "csname", "csname", "empty", "setkeys", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "clearpage"], "svg-extract": ["expandafter", "csname", "csname", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "RequireXeTeX", "rotatebox", "newpage", "clearpage"], "svn-multi": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "svninfo": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "svnkw": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "swimgraf": ["setkeys", "mathbb", "Big", "big", "gray", "green", "red", "documentclass"], "syllogism": ["frak", "Bbb", "bold", "xspace", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "sympytex": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "synproof": ["setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "gray", "green", "red", "documentclass"], "syntaxdi": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "syntrace": ["qroof", "Tree", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "tabfigures": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "table-fct": ["ifthenelse", "value", "csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "newcommandx", "rotatebox", "expandafter", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "tablefootnote": ["tablefootnote", "ifthenelse", "value", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tablestyles": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "selectfont", "Centering", "justifying", "RaggedRight", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tablists": ["theadalign", "makecell", "theadset", "theadgape", "height", "setcellgapes", "diaghead", "Xhline", "arraystretch", "Gape", "theadfont", "thead", "makegapedcells", "cellgape", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tablor": ["setkeys", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "tablor-xetex": ["setkeys", "RequireXeTeX", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "tabstackengine": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter"], "tabto": ["tab", "tabto", "NumTabs"], "tabu": ["extrarowheight", "do", "multicolumn", "hskip", "arraystretch", "tabulinesep", "hfill", "par", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabularborder": ["specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabularcalc": ["expandafter", "np", "pm", "npthousandsep", "textcelsius", "npdecimalsign", "color", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabularew": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabularkv": ["setkeys"], "tabularx": ["arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabulary": ["multicolumn", "arraybackslash", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tabvar": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "tagging": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "tagpair": ["par"], "tasks": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "expandafter", "expandafter", "empty", "color", "expandafter"], "tclldoc": ["maketitle", "verbatim", "do", "verb", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "tcolorbox": ["newtcbox", "newtcolorbox", "tcbuselibrary", "arraystretch", "tcbset", "csname", "csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "expandafter"], "tcolorbox.doc.s_main": ["csname", "empty", "empty", "empty", "csname", "stepcounter", "addtocounter", "text", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "frak", "Bbb", "bold", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "RequireXeTeX", "bookmarksetup", "pdfbookmark", "bookmarkget", "check", "space", "empty", "csname", "empty", "lipsum", "setlipsumdefault", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "expandafter", "inputencoding", "intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "label", "nonumber", "textcolor", "eqref", "noexpand", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "par", "csname", "noexpand", "empty", "expandafter", "empty", "noexpand", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "refstepcounter", "crefname", "csname", "Crefname", "expandafter", "crefmultiformat", "creflastconjunction", "crefdefaultlabelformat", "crefrangeconjunction", "label", "crefformat", "creflabelformat", "cref", "crefrangeformat", "labelcref", "Cref", "sfdefault", "rmdefault", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "printindex", "makeindex", "index", "csname", "empty"], "tdclock": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "tdsfrmath": ["xspace", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newcommandx", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "teixml": ["ref", "protect", "label", "nameref", "pageref", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "thepage", "rotatebox"], "teixmlslides": ["ref", "protect", "label", "nameref", "pageref", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "thepage", "rotatebox"], "templatetools": ["newpage", "clearpage", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "tempora": ["noexpand", "expandafter"], "tengwarscript": ["expandafter"], "termcal": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "testidx": ["RequireXeTeX", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "teubner": ["setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tex-label": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "tex-live": ["csname", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "smaller", "mathlarger", "par", "setkeys", "empty", "RequireXeTeX", "rotatebox", "do", "MakeShortVerb", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "xspace", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "specialcomment", "includecomment", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "tex-live-zh-cn": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "par", "setkeys", "empty", "rotatebox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "specialcomment", "includecomment", "color", "setCJKmonofont", "setCJKsansfont", "setCJKmainfont", "csname", "smaller", "mathlarger", "RequireXeTeX", "do", "MakeShortVerb", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "xspace", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "tex4ebook": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "texdepends": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "texdraw": ["resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "texgraphicx": ["csname", "empty", "csname", "csname", "empty", "epstopdfsetup", "epstopdfDeclareGraphicsRule", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "AppendGraphicsExtensions", "check", "space", "empty", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty"], "texlive-sr": ["DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "markboth", "setdefaultlanguage", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "par", "setkeys", "empty", "rotatebox", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "csname", "noexpand", "empty", "specialcomment", "includecomment", "color", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "csname", "lsstyle", "DisableLigatures", "expandafter", "noexpand", "space", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "smaller", "mathlarger", "csname", "noexpand", "empty", "expandafter", "empty", "RequireXeTeX", "do", "MakeShortVerb", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "predate", "postdate", "thanks", "postauthor", "maketitle", "preauthor", "pretitle", "posttitle", "xspace", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "texlogos": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "texmate": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setboardfontencoding", "frak", "Bbb", "bold"], "texments": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setkeys", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "texnansi": ["noexpand", "expandafter"], "texpower": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "texproposal": ["csname", "empty", "printindex", "raggedleftmarginnote", "marginnote", "setkeys", "empty", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "csname", "csname", "noexpand", "empty", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables", "color", "ding", "bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite", "noexpand", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "csname", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect", "includepdf", "includegraphics", "addcontentsline", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "noexpand", "expandafter", "check", "space", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "texshade": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "textcase": ["cite"], "textgreek": ["temp"], "textopo": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "textpathmp": ["sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl"], "textpos": ["textblockorigin", "color", "setkeys"], "texvc": ["cancelto", "cancel", "EUR", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "frak", "Bbb", "bold", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "tgadventor": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgbonum": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgchorus": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgcursor": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgheros": ["sfdefault", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgpagella": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgschola": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "tgtermes": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "thaienum": ["descriptionlabel", "setitemize", "renewlist", "csname", "setlistdepth", "expandafter", "newlist", "setlist", "setenumerate", "makelabel", "value", "noexpand"], "thalie": ["expandafter", "xspace", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "newpage", "clearpage"], "thesis-a4paper": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "framebreak", "newstaticframe", "newflowframe", "savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "clearpage", "afterpage", "setkeys", "rotatebox", "empty", "RequireXeTeX", "expandafter"], "thm-autoref": ["proof", "newtheorem", "endproof", "setkeys"], "thm-kv": ["theoremstyle", "declaretheoremstyle", "declaretheorem", "csname", "noexpand", "empty", "setkeys", "proof", "newtheorem", "endproof"], "thm-listof": ["listtheoremname", "listoftheorems", "thmtformatoptarg", "csname", "noexpand", "empty", "setkeys", "proof", "newtheorem", "endproof"], "thm-patch": ["proof", "newtheorem", "endproof"], "thm-restate": ["proof", "newtheorem", "endproof", "listtheoremname", "listoftheorems", "thmtformatoptarg", "csname", "noexpand", "empty", "setkeys", "theoremstyle", "declaretheoremstyle", "declaretheorem"], "thmbox": ["setkeys"], "thmtools": ["listtheoremname", "listoftheorems", "thmtformatoptarg", "csname", "noexpand", "empty", "setkeys", "proof", "newtheorem", "endproof", "theoremstyle", "declaretheoremstyle", "declaretheorem"], "threadcol": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "threeparttable": ["item"], "threeparttablex": ["insertTableNotes", "item", "tnotex", "csname", "expandafter", "item"], "thumbs": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "makeindex", "index", "check", "space", "empty", "thepage", "pagenumbering", "clearpage", "global", "pagecolor", "csname", "noexpand", "empty"], "thumby": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "thuthesis": ["expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "backslashbox", "diagbox", "multirow", "vector", "Line", "line", "polyline", "polygon"], "ticket": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ticollege": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "noexpand", "expandafter"], "tiddetext": ["xspace"], "tighttoc": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "tikz": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-3dplot": ["tdplotsetmaincoords", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-cd": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-dependency": ["csname", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "expandafter"], "tikz-dimline": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-feynman": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter", "setkeys", "rotatebox"], "tikz-inet": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-opm": ["csname", "stepcounter", "addtocounter", "text", "csname", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "tikz-page": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "textblockorigin", "color", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tikz-palattice": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "csname", "frenchspacing", "do", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "color", "rotatebox", "newcommandx"], "tikz-qtree": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-qtree-compat": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikz-timing-advnodes": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-arrows": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-beamer": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-clockarrows": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-columntype": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "expandafter", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-counters": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-either": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-ifsym": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "expandafter", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-interval": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-nicetabs": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "expandafter", "setkeys", "rotatebox", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikz-timing-overlays": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "tikzexternal": ["rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "tikzinclude": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikzinput": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "renewcommand"], "tikzorbital": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikzpagenodes": ["csname", "noexpand", "checkoddpage", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikzpeople": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox"], "tikzpfeile": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "rotatebox"], "tikzrput": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tikzscale": ["setkeys", "color", "csname", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "times": ["ttdefault", "sfdefault", "rmdefault"], "timing-diagrams": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tinos": ["RequireXeTeX"], "tipa": ["textipa"], "tipfr": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "noexpand", "expandafter"], "tipx": ["textipa"], "titlepic": ["maketitle", "titlepic"], "titlesec": ["markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel"], "titletoc": ["titlecontents", "newpage", "startcontents", "contentslabel", "contentspage", "csname", "contentsmargin", "expandafter", "printcontents", "filcenter", "thecontentslabel", "numberline", "titlerule", "dottedcontents", "contentsuse"], "titling": ["predate", "postdate", "thanks", "postauthor", "maketitle", "preauthor", "pretitle", "posttitle"], "tkz-base": ["expandafter", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts", "setkeys", "rotatebox"], "tkz-berge": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkz-euclide": ["expandafter", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkz-fct": ["expandafter", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkz-graph": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkz-kiviat": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts", "setkeys", "rotatebox"], "tkz-linknodes": ["csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkz-orm": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "tkz-tab": ["csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "newtoks", "reserveinserts"], "tkzexample": ["em", "textsubscript", "setlength", "csname", "empty", "csname", "empty", "newmdtheoremenv", "csname", "noexpand", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset", "csname", "noexpand", "empty", "color"], "tocbasic": ["setkeys", "newpage", "clearpage"], "tocbibind": ["tocchapter", "tocfile", "listfigurename", "contentsname", "tocbibname", "settocbibname", "indexname", "tableofcontents", "listoffigures", "listoftables"], "tocdata": ["ifthenelse", "value", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tocloft": ["cftsecfont", "cftdotsep", "cftsecpagefont", "cftaftertoctitle", "tocloftpagestyle", "cftsetindents", "cftsecleader", "cftchapfont", "cftsecdotsep", "cftchappresnum", "tableofcontents", "cftdot", "cfttoctitlefont", "newlistof", "cftlottitlefont", "cftloftitlefont", "cftsubsecleader", "cftdotfill", "cftchappagefont", "listoffigures", "numberline", "cftafterlottitle", "phantomsection", "cftafterloftitle", "cftchapleader", "listoftables"], "tocstyle": ["usetocstyle"], "tocvsec2": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "todo": ["frak", "Bbb", "bold"], "todonotes": ["todo", "todototoc", "missingfigure", "phantomsection", "listoftodos", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tone": ["textipa"], "topcoman": ["ohm", "gradi", "gei", "listing", "micro", "unit", "ped"], "topfront": ["CorsoDiLaureaIn", "NomePrimoTomo", "TutorName", "secondocandidato", "ciclodidottorato", "NomeDissertazione", "DottoratoIn", "nomeateneo", "NomeQuartoTomo", "NomeSecondoTomo", "CycleName", "titolo", "sedutadilaurea", "retrofrontespizio", "CandidateName", "AdvisorName", "ateneo", "InName", "facolta", "NomeTerzoTomo", "corsodilaurea", "tutoreaziendale", "NomeMonografia", "NomeTutoreAziendale", "TesiDiLaurea", "secondorelatore", "relatore", "logosede", "candidato", "sottotitolo", "FacoltaDi"], "toptesi": ["tomo", "nota", "NoteWhiteLine", "paginavuota", "indici", "ringraziamenti", "sommario", "mainmatter", "setkeys", "ohm", "gradi", "gei", "listing", "micro", "unit", "ped", "csname", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "totcount": ["newtotcounter", "totvalue", "setkeys"], "totpages": ["setkeys"], "tplists": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tppstcol": ["textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "gray", "green", "red", "documentclass"], "tpslifonts": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "tqft": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "translations": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "translator": ["setkeys"], "trig": ["csname"], "trimclip": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "trimspaces": ["expandafter"], "truncate": ["expandafter", "selectfont"], "ttb_style": ["xspace"], "tucv": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "color", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "tudscrbase": ["csname", "noexpand", "empty", "empty", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "newpage", "clearpage"], "tudscrcolor": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "tudscrfonts": ["cite", "csname", "noexpand", "empty", "empty", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "newpage", "clearpage"], "tudscrtutorial": ["par", "raggedleftmarginnote", "marginnote", "empty", "color", "expandafter", "hologo", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "RequireXeTeX", "WarningFilter", "WarningsOff", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "newpage", "clearpage", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "noexpand", "empty", "expandafter", "empty", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "xpatchcmd", "xspace", "KOMAoptions", "setkomafont", "addtokomafont", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "expandafter", "printindex", "makeindex", "index", "todo", "todototoc", "missingfigure", "phantomsection", "listoftodos"], "turabian-formatting": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "multfootsep", "footref", "thefootnote", "footnote", "clearpage", "footnotemark", "footnotelayout", "protect"], "turnpageetex": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "turnpagewoetex": ["csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "makeindex", "index", "check", "space", "empty", "thepage", "pagenumbering", "clearpage", "global", "csname", "noexpand", "empty"], "turnstile": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "txfonts": ["sqrt"], "txfontsb": ["sqrt"], "txgreeks": ["sqrt"], "typearea": ["KOMAoptions", "setkomafont", "addtokomafont", "setkeys", "newpage", "clearpage"], "typed-checklist": ["HandRight", "XSolidBrush", "Checkmark", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "par", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "raggedleftmarginnote", "marginnote", "extrarowheight", "do", "multicolumn", "hskip", "arraystretch", "tabulinesep", "hfill", "expandafter"], "typeface": ["empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "typoaid": ["si", "SIlist", "num", "DeclareSIUnit", "SIrange", "ang", "SI", "sisetup", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "specialrule", "midrule", "cmidrule", "toprule", "addlinespace", "bottomrule", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "color"], "typogrid": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "uassign": ["noexpand", "csname", "empty", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "makelabel", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "bookmarksetup", "pdfbookmark", "bookmarkget", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "csname", "stepcounter", "addtocounter", "text", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "markright", "filright", "titlespacing", "newpage", "titleclass", "cleardoublepage", "chaptertitlename", "markboth", "csname", "footnote", "expandafter", "filcenter", "titleformat", "titlerule", "filleft", "titlelabel", "csname", "empty"], "ucharclasses": ["RequireXeTeX"], "ucshyper": ["noexpand", "csname", "empty", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "udesoftec-bibcommon": ["noexpand", "check", "space", "empty", "csname", "empty", "xpatchcmd", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "empty", "csname", "empty", "hyp", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty", "color", "noexpand", "empty", "RequireXeTeX", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "udesoftec-biblatex": ["csname", "empty", "xpatchcmd", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "setkeys", "empty", "hyp", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color", "noexpand", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "udesoftec-bst": ["csname", "empty", "xpatchcmd", "quote", "par", "csname", "expandafter", "do", "break", "endquote", "blockquote", "mkbegdispquote", "mkcitation", "setkeys", "empty", "hyp", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "noexpand", "empty", "color", "noexpand", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "noexpand", "RequireXeTeX", "check", "space", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "expandafter", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "uebungsblatt": ["inputencoding", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset"], "uhrzeit": ["sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl"], "uiucthesis": ["onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "ulem": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill"], "ulqda": ["sodef", "csname", "def", "st", "DeclareRobustCommand", "sethlcolor", "so", "hl", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor"], "uml": ["smaller", "mathlarger", "gray", "green", "red", "documentclass"], "umlaute": ["inputencoding"], "underoverlap": ["intertext", "coloneqq", "adjustlimits", "mathllap", "xleftrightarrow", "mathclap", "nonumber", "mathrlap", "MoveEqLeft", "xhookrightarrow", "prescript", "underbrace", "vcentcolon", "overbrace", "DeclarePairedDelimiter", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "setkeys", "color", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "expandafter"], "unicode": ["bm", "ding", "frak", "Bbb", "bold"], "unicode-math": ["color"], "unicode-math-luatex": ["color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "unidoc": ["maketitle", "verbatim", "do", "verb"], "unisugar": ["RequireXeTeX"], "units": ["unitfrac", "unit", "nicefrac", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "unitsdef": ["unitfrac", "unit", "nicefrac", "csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "boldsymbol", "pmb", "noexpand", "expandafter", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "universalis": ["RequireXeTeX"], "unravel": ["color"], "unswcover": ["AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "csname", "rotatebox", "expandafter", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "includepdf", "includegraphics", "addcontentsline", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "uowthesistitlepage": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "csname", "empty", "RequireXeTeX", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch"], "upmethodology-backpage": ["xspace", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "upmethodology-code": ["xspace", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "upmethodology-document": ["csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "setpapersize", "setmargins", "setmarginsrb", "hyp", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sqrt", "csname", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "expandafter", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "upmethodology-extension": ["xspace", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "upmethodology-fmt": ["csname", "csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "smaller", "mathlarger", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "expandafter", "hyp", "xspace", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed", "sqrt"], "upmethodology-frontpage": ["csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "setpapersize", "setmargins", "setmarginsrb", "hyp", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sqrt", "csname", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "expandafter", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "upmethodology-p-common": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "xspace", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "upmethodology-spec": ["csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "hyp", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sqrt", "csname", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "xspace", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "upmethodology-task": ["csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "hyp", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sqrt", "csname", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "upmethodology-version": ["csname", "DeclareCaptionLabelSeparator", "DeclareCaptionFont", "DeclareCaptionFormat", "DeclareCaptionSubType", "footnote", "expandafter", "DeclareCaptionType", "DeclareCaptionJustification", "string", "footnotemark", "captionsetup", "noexpand", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "listtheoremname", "listoftheorems", "thmtformatoptarg", "setkeys", "rotatebox", "theoremstyle", "declaretheoremstyle", "declaretheorem", "columnbreak", "clearpage", "expandafter", "raggedcolumns", "columnseprulecolor", "hyp", "csname", "stepcounter", "addtocounter", "text", "proof", "newtheorem", "endproof", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname", "noexpand", "empty", "ding", "appendix", "caption", "stepcounter", "ContinuedFloat", "label", "string", "captionsetup", "noindent", "noexpand", "hspace", "captionof", "chapter", "sqrt", "csname", "csname", "frenchspacing", "do", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "smaller", "mathlarger", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin", "subcaption", "subref", "newsubfloat", "subcaptionbox", "onehalfspacing", "singlespacing", "setstretch", "doublespacing", "baselinestretch", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "expandafter", "xspace", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "popQED", "frenchspacing", "proofname", "swapnumbers", "qedsymbol", "newtheorem", "newtheoremstyle", "pushQED", "qedhere", "theoremstyle", "qed"], "uri": ["csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "noexpand", "empty", "expandafter", "empty"], "url": ["UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "usbib": ["bibpunct", "citetalias", "aftergroup", "citealt", "citeyearpar", "makeindex", "citealp", "textsuperscript", "MakeUppercase", "bibname", "setcitestyle", "citep", "expandafter", "newblock", "bibsection", "citeyear", "refname", "citeauthor", "citet", "nocite", "defcitealias", "bibitem", "citepalias", "cite"], "usebib": ["setkeys", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks"], "usnomencl": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "uspace": ["RequireXeTeX", "inputencoding", "newunicodechar"], "ussummary": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "hline", "expandafter", "multicolumn", "rowcolor", "arrayrulecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "usthesis": ["setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ustitle": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "setkeys"], "varioref": ["csname"], "varsfromjobname": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty", "ifthenelse", "setboolean", "boolean", "value", "newboolean"], "varwidth": ["par"], "vaucanson": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "vaucanson-g": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "vdmlisting": ["setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "venndiagram": ["csname", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "venturis": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "venturis2": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "venturisold": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "verbasef": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle"], "verbatim": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "verbatimcopy": ["par", "expandafter", "endverbatim", "verbatiminput", "verbatim"], "verbments": ["setkeys", "fbox", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "refstepcounter", "expandafter", "VerbatimEnvironment", "fvset"], "versions": ["processifversion", "includeversion", "excludeversion"], "vertbars": ["linenumbers", "fileversion", "filedate", "nolinenumbers", "pagewiselinenumbers", "expandafter", "modulolinenumbers", "endlinenomath", "linenumberfont", "linenomath"], "vgrid": ["noexpand", "checkoddpage", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "vhistory": ["arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "vietnam": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "vmargin": ["setpapersize", "setmargins", "setmarginsrb"], "vntex": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "noexpand", "expandafter"], "vpe": ["setkeys"], "vwcol": ["selectfont", "expandafter", "csname", "setkeys", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Centering", "justifying", "RaggedRight"], "wallpaper": ["CenterWallPaper", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "csname", "rotatebox", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "warpcol": ["endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array"], "wasysym": ["CIRCLE", "checked", "int", "diameter"], "with": ["color"], "withargs": ["color"], "withargs-dry": ["newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "wordlike": ["savegeometry", "newgeometry", "loadgeometry", "restoregeometry", "geometry", "setkeys", "sfdefault", "empty", "RequireXeTeX", "bigg", "Big", "big", "rmdefault"], "workaddress": ["xspace", "setkeys", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand"], "wrapfig": ["par", "wrapfigure", "noexpand", "expandafter"], "wrapft": ["par", "wrapfigure", "noexpand", "expandafter"], "xCJK2uni": ["color"], "xargs": ["newcommandx"], "xassoccnt": ["DeclareAssociatedCounters", "NewTotalDocumentCounter", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "xcntperchap": ["check", "space", "empty", "csname", "empty", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty", "color", "DeclareAssociatedCounters", "NewTotalDocumentCounter"], "xcoffins": ["color"], "xcolor": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "xcolor-material": ["csname", "noexpand", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty"], "xcolor-patch": ["noexpand"], "xcolor-solarized": ["csname", "noexpand", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "noexpand", "empty", "expandafter", "empty"], "xcookybooky": ["multicolumn", "arraybackslash", "expandafter", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setkeys", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "sectionmark", "fancyheadoffset", "fancyhead", "nouppercase", "rfoot", "baselinestretch", "footrule", "MakeUppercase", "subsectionmark", "lhead", "headrule", "plainheadrulewidth", "iffloatpage", "fancyhfoffset", "footruleskip", "rhead", "fancypagestyle", "fancyhf", "chaptermark", "lfoot", "headrulewidth", "footrulewidth", "fancyplain", "fancyfoot", "cfoot", "chead", "fancyfootoffset", "fbox", "par", "wrapfigure", "noexpand", "expandafter", "unitfrac", "unit", "csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "AtBeginShipout", "AtBeginShipoutNext", "empty", "LenToUnit", "AddToShipoutPictureFG", "AddToShipoutPicture", "AtPageUpperLeft", "AddToShipoutPictureBG", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "Letter", "nicefrac", "textcolor", "LettrineFontHook", "lettrine", "color"], "xdoc2": ["maketitle", "verbatim", "do", "verb"], "xeCJK": ["setCJKmonofont", "setCJKsansfont", "setCJKmainfont", "color"], "xeCJK-listings": ["setCJKmonofont", "setCJKsansfont", "setCJKmainfont", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "setkeys", "color"], "xeCJKfntef": ["csname", "setCJKmonofont", "setCJKsansfont", "setCJKmainfont", "uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill", "color", "expandafter"], "xecolor": ["color"], "xecyr": ["setkeys", "csname", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "expandafter"], "xeindex": ["printindex"], "xepersian": ["settextfont", "csname", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "expandafter", "empty", "check", "space", "empty", "empty", "newpage", "csname", "noexpand", "empty", "color"], "xepersian-multiplechoice": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "ding", "par", "expandafter", "endverbatim", "verbatiminput", "verbatim", "arraybackslash", "tabularxcolumn", "let", "write", "tabularx", "endtabular", "tabular", "csname", "arraybackslash", "newcolumntype", "multicolumn", "array", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "xespotcolor": ["RequireXeTeX"], "xetexko": ["color"], "xetexko-font": ["color"], "xetexko-var": ["color"], "xfor": ["expandafter"], "xfp": ["color"], "xfrac": ["sfrac", "frenchspacing", "do", "csname", "setkeys", "rotatebox", "csname", "stepcounter", "addtocounter", "text", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "color"], "xgalley": ["color"], "xhfill": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "xspace", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "xifthen": ["ifthenelse", "value", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "xint": ["xintGeq", "xintCmp", "xintOdd", "xintSgnFork"], "xintexpr": ["expandafter"], "xkvview": ["newpage", "tablename", "nopagebreak", "endhead", "endfirsthead", "endfoot", "endlastfoot", "pagebreak"], "xltxtra": ["textsuperscript", "textsubscript", "XeLaTeX", "LaTeX", "TeX", "XeTeX", "setkeys", "color", "csname", "RequireXeTeX", "rotatebox", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule"], "xmpincl": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "xmpmulti": ["setkeys"], "xob-amssymb": ["frak", "Bbb", "bold"], "xob-dotemph": ["color"], "xob-font": ["color"], "xparse": ["color"], "xpatch": ["xpatchcmd", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"], "xpeek": ["color"], "xpiano": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "color"], "xpicture": ["put", "polyline", "vector", "Line", "line", "polyline", "polygon", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "xpinyin": ["color"], "xprintlen": ["expandafter"], "xpunctuate": ["xspace"], "xr": ["externaldocument"], "xsavebox": ["color"], "xsim": ["color"], "xsimverb": ["color"], "xskak": ["newchessgame", "mainline", "setkeys", "rotatebox", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "ifthenelse", "value", "csname", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "setboardfontencoding", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength", "gray", "green", "red", "documentclass"], "xspace": ["xspace"], "xtemplate": ["color"], "xunicode": ["expandafter", "rotatebox", "setkeys", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "csname"], "xunicode-addon": ["color"], "xxcolor": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "xyling": ["ifthenelse", "setboolean", "boolean", "value", "newboolean", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "pagecolor"], "xymtx-pdf": ["csname", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "resizebox", "DeclareGraphicsExtensions", "includegraphics", "graphicspath", "expandafter", "scalebox", "noexpand", "rotatebox", "reflectbox", "DeclareGraphicsRule", "setkeys", "rotatebox"], "xymtx-ps": ["expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "gray", "green", "red", "documentclass"], "yagusylo": ["ifthenelse", "value", "newcommandx", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "yathesis-demo": ["xpatchcmd", "ifthenelse", "value", "check", "space", "empty", "csname", "empty", "csname", "noexpand", "empty", "empty", "expandafter", "empty", "color", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "ifthenelse", "setboolean", "boolean", "value", "newboolean", "csname", "empty", "csname", "noexpand", "setcounter", "stepcounter", "addtocounter", "expandafter", "setlength", "addtolength"], "ydoc": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "do", "MakeShortVerb", "floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "check", "space", "empty", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "ydoc-code": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "check", "space", "empty", "empty", "csname", "empty", "noexpand", "expandafter", "empty", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "ydoc-desc": ["noexpand", "csname", "empty", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor", "csname", "empty", "csname", "noexpand", "empty", "AtBeginShipout", "AtBeginShipoutNext", "empty", "setkeys", "expandafter", "empty", "noexpand", "empty", "RequireXeTeX", "do", "MakeShortVerb", "check", "space", "empty", "empty", "csname", "empty", "xspace", "noexpand", "expandafter", "empty", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "appendix", "newline", "tableautorefname", "caption", "href", "maketitle", "do", "MakeLowercase", "addcontentsline", "TeX", "paragraphautorefname", "begin", "equationautorefname", "protect", "alph", "MakeUppercase", "numberwithin", "ref", "subparagraphautorefname", "subsectionautorefname", "expandafter", "itemautorefname", "partautorefname", "newlabel", "textcolor", "autoref", "roman", "nameref", "Roman", "LaTeXe", "hypersetup", "Alph", "noexpand", "footnoteautorefname", "url", "nolinkurl", "pageref", "figureautorefname", "Itemautorefname", "appendixautorefname", "halign", "end", "hyperlink", "pdfbookmark", "string", "FancyVerbLineautorefname", "title", "MP", "hyperref", "texorpdfstring", "author", "item", "refstepcounter", "footref", "theoremautorefname", "hypertarget", "sectionautorefname", "citeN", "csname", "phantomsection", "subsubsectionautorefname", "LaTeX", "arabic", "chapterautorefname", "csname", "noexpand", "empty", "UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "csname", "empty"], "ydoc-doc": ["UrlBreaks", "urldef", "urlstyle", "Url", "UrlOrds", "UrlFont", "UrlSpecials", "UrlNoBreaks", "UrlBigBreaks", "do", "MakeShortVerb"], "ydoc-expl": ["floatplacement", "newfloat", "listof", "caption", "restylefloat", "floatname", "floatstyle", "setkeys", "lstlistoflistings", "csname", "expandafter", "lstinline", "do", "vskip", "lstinputlisting", "space"], "yhmath": ["csname", "stepcounter", "addtocounter", "text", "frenchspacing", "do", "notag", "Longrightarrow", "Ddot", "longleftrightarrow", "smash", "longrightarrow", "uproot", "xleftarrow", "do", "Dot", "Big", "ldots", "arraystretch", "Longleftrightarrow", "genfrac", "bigg", "numberwithin", "int", "underset", "doteq", "Acute", "nonumber", "hdotsfor", "Grave", "tbinom", "Longleftarrow", "And", "bmod", "mspace", "dbinom", "theequation", "Hat", "over", "AmS", "substack", "overline", "ignorespacesafterend", "leftroot", "longleftarrow", "hookrightarrow", "allowdisplaybreaks", "dots", "mapsto", "eqref", "label", "implies", "dotsi", "sideset", "oint", "pod", "frac", "overset", "xrightarrow", "dotsc", "Check", "intertext", "Tilde", "mathaccentV", "tfrac", "Bigg", "Breve", "hookleftarrow", "iff", "dfrac", "pmod", "Bar", "impliedby", "Vec", "mod", "boxed", "cfrac", "idotsint", "binom", "colon", "longmapsto", "atop", "big", "boldsymbol", "pmb", "arg", "det", "deg", "arctan", "min", "arccos", "varinjlim", "tanh", "coth", "DeclareMathOperator", "varprojlim", "limsup", "dim", "log", "Pr", "ker", "gcd", "sup", "cos", "tan", "liminf", "varlimsup", "cot", "operatorname", "varliminf", "operatornamewithlimits", "cosh", "hom", "csc", "inf", "exp", "sin", "sec", "ln", "sinh", "max", "lim", "arcsin"], "yplan": ["ifthenelse", "setboolean", "boolean", "value", "newboolean"], "ytableau": ["expandafter", "expandafter", "textcolor", "color", "fcolorbox", "colorbox", "definecolor", "definecolors", "selectcolormodel", "noexpand", "rowcolors", "colorlet", "pagecolor"], "zhfont": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill"], "zhnumber": ["color"], "zhulem": ["uline", "hss", "hfil", "MakeRobust", "normalem", "iff", "markoverwith", "useunder", "ULon", "sout", "hfill"], "zref": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-abspage": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-abspos": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-base": ["csname", "noexpand", "check", "space", "empty", "csname", "empty", "csname", "noexpand", "empty", "empty", "expandafter", "empty", "csname", "empty"], "zref-counter": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-dotfill": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty"], "zref-env": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-hyperref": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-lastpage": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-marks": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-nextpage": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-pageattr": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-pagelayout": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-perpage": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-savepos": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-thepage": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-titleref": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "addcontentsline", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty"], "zref-totpages": ["check", "space", "empty", "csname", "empty", "empty", "clearpage", "global", "csname", "empty", "csname", "noexpand", "AtBeginShipout", "AtBeginShipoutNext", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-user": ["zlabel", "zref", "check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "expandafter", "empty"], "zref-xr": ["check", "space", "empty", "csname", "empty", "empty", "csname", "empty", "csname", "noexpand", "csname", "noexpand", "empty", "csname", "noexpand", "empty", "setkeys", "expandafter", "empty"], "zwpagelayout": ["csname", "noexpand", "empty", "csname", "noexpand", "empty", "expandafter", "empty"], "zxbase": ["RequireXeTeX"], "zxjafbfont": ["setCJKmonofont", "setCJKsansfont", "setCJKmainfont", "color"], "zxjafont": ["setkeys", "color", "RequireXeTeX"], "zxjatype": ["RequireXeTeX", "newrobustcmd", "ifundef", "csname", "do", "string", "ifnumcomp", "ifbool", "ifdefempty", "noexpand", "color"]} diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/top_hundred_snippets.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/top_hundred_snippets.coffee new file mode 100644 index 0000000000..9423df89b3 --- /dev/null +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/top_hundred_snippets.coffee @@ -0,0 +1 @@ +define -> {"begin": [{"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "cmd", "score": 7.851474692918618}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "cmd", "score": 7.851474692918618}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "cmd", "score": 7.851474692918618}], "end": [{"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "cmd", "score": 7.849718850118887}], "usepackage": [{"caption": "\\usepackage{}", "snippet": "\\usepackage{$1}", "meta": "cmd", "score": 5.425018231367431}, {"caption": "\\usepackage[]{}", "snippet": "\\usepackage[$1]{$2}", "meta": "cmd", "score": 5.425018231367431}], "item": [{"caption": "\\item", "snippet": "\\item", "meta": "cmd", "score": 3.8010440307202438}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "cmd", "score": 3.8010440307202438}], "section": [{"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "cmd", "score": 3.09702271879909}], "textbf": [{"caption": "\\textbf{}", "snippet": "\\textbf{$1}", "meta": "cmd", "score": 2.620600410218657}], "cite": [{"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "cmd", "score": 2.3435640874361017}], "label": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "cmd", "score": 1.9020280335559465}], "textit": [{"caption": "\\textit{}", "snippet": "\\textit{$1}", "meta": "cmd", "score": 1.684388305943559}], "documentclass": [{"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "cmd", "score": 1.4416830668072986}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "cmd", "score": 1.4416830668072986}], "frac": [{"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "cmd", "score": 1.4349952843769969}], "subsection": [{"caption": "\\subsection{}", "snippet": "\\subsection{$1}", "meta": "cmd", "score": 1.3906943120618431}], "hline": [{"caption": "\\hline", "snippet": "\\hline", "meta": "cmd", "score": 1.3254374162456228}], "caption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "cmd", "score": 1.260124058445417}], "centering": [{"caption": "\\centering", "snippet": "\\centering", "meta": "cmd", "score": 1.1675525207475415}], "vspace": [{"caption": "\\vspace{}", "snippet": "\\vspace{$1}", "meta": "cmd", "score": 0.9534435863795255}], "title": [{"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "cmd", "score": 0.9198856343434283}], "author": [{"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "cmd", "score": 0.8969538515275781}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "cmd", "score": 0.8969538515275781}], "maketitle": [{"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "cmd", "score": 0.7504150683640368}], "textwidth": [{"caption": "\\textwidth", "snippet": "\\textwidth", "meta": "cmd", "score": 0.7377127737018749}], "newcommand": [{"caption": "\\newcommand{}{}", "snippet": "\\newcommand{$1}{$2}", "meta": "cmd", "score": 0.7265412138604149}, {"caption": "\\newcommand{}[]{}", "snippet": "\\newcommand{$1}[$2]{$3}", "meta": "cmd", "score": 0.7265412138604149}], "date": [{"caption": "\\date{}", "snippet": "\\date{$1}", "meta": "cmd", "score": 0.7225509012356308}], "emph": [{"caption": "\\emph{}", "snippet": "\\emph{$1}", "meta": "cmd", "score": 0.7058370317781115}], "textsc": [{"caption": "\\textsc{}", "snippet": "\\textsc{$1}", "meta": "cmd", "score": 0.6925522068775231}], "multicolumn": [{"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "cmd", "score": 0.5475496759728834}], "alpha": [{"caption": "\\alpha", "snippet": "\\alpha", "meta": "cmd", "score": 0.4959099588869278}], "input": [{"caption": "\\input{}", "snippet": "\\input{$1}", "meta": "cmd", "score": 0.4901910059235212}], "in": [{"caption": "\\in", "snippet": "\\in", "meta": "cmd", "score": 0.4731135137964997}], "mathbf": [{"caption": "\\mathbf{}", "snippet": "\\mathbf{$1}", "meta": "cmd", "score": 0.4696297916051234}], "right": [{"caption": "\\right", "snippet": "\\right", "meta": "cmd", "score": 0.43118015916657987}], "left": [{"caption": "\\left", "snippet": "\\left", "meta": "cmd", "score": 0.4306343660195287}, {"caption": "\\left[]", "snippet": "\\left[$1]", "meta": "cmd", "score": 0.4306343660195287}], "sum": [{"caption": "\\sum", "snippet": "\\sum", "meta": "cmd", "score": 0.42730879777373554}], "noindent": [{"caption": "\\noindent", "snippet": "\\noindent", "meta": "cmd", "score": 0.42365748364740347}], "chapter": [{"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "cmd", "score": 0.42208951346862517}], "par": [{"caption": "\\par", "snippet": "\\par", "meta": "cmd", "score": 0.41385054378501596}], "lambda": [{"caption": "\\lambda", "snippet": "\\lambda", "meta": "cmd", "score": 0.3941652762938711}], "subsubsection": [{"caption": "\\subsubsection{}", "snippet": "\\subsubsection{$1}", "meta": "cmd", "score": 0.3728813983509094}], "bibitem": [{"caption": "\\bibitem{}", "snippet": "\\bibitem{$1}", "meta": "cmd", "score": 0.36888678386876994}, {"caption": "\\bibitem[]{}", "snippet": "\\bibitem[$1]{$2}", "meta": "cmd", "score": 0.36888678386876994}], "text": [{"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "cmd", "score": 0.3608671294016344}], "setlength": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "cmd", "score": 0.354469298648859}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "cmd", "score": 0.354469298648859}], "mathcal": [{"caption": "\\mathcal{}", "snippet": "\\mathcal{$1}", "meta": "cmd", "score": 0.35116657770303583}], "newline": [{"caption": "\\newline", "snippet": "\\newline", "meta": "cmd", "score": 0.3311721696201715}], "newpage": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "cmd", "score": 0.32767561222549174}], "renewcommand": [{"caption": "\\renewcommand{}{}", "snippet": "\\renewcommand{$1}{$2}", "meta": "cmd", "score": 0.3267786318741281}, {"caption": "\\renewcommand", "snippet": "\\renewcommand", "meta": "cmd", "score": 0.3267786318741281}], "theta": [{"caption": "\\theta", "snippet": "\\theta", "meta": "cmd", "score": 0.32124815664527034}], "hspace": [{"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "cmd", "score": 0.31472026515860996}], "beta": [{"caption": "\\beta", "snippet": "\\beta", "meta": "cmd", "score": 0.3066450566368152}], "texttt": [{"caption": "\\texttt{}", "snippet": "\\texttt{$1}", "meta": "cmd", "score": 0.3019066753744355}], "times": [{"caption": "\\times", "snippet": "\\times", "meta": "cmd", "score": 0.2958695003521635}], "citep": [{"caption": "\\citep{}", "snippet": "\\citep{$1}", "meta": "cmd", "score": 0.29431067915471926}], "color": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "cmd", "score": 0.2864757606289432}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "cmd", "score": 0.2864757606289432}], "mu": [{"caption": "\\mu", "snippet": "\\mu", "meta": "cmd", "score": 0.2765197190146773}], "href": [{"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "cmd", "score": 0.27111130260612365}], "bibliography": [{"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "cmd", "score": 0.2655663632153789}], "linewidth": [{"caption": "\\linewidth", "snippet": "\\linewidth", "meta": "cmd", "score": 0.2639661506765124}], "delta": [{"caption": "\\delta", "snippet": "\\delta", "meta": "cmd", "score": 0.26259071297087305}], "sigma": [{"caption": "\\sigma", "snippet": "\\sigma", "meta": "cmd", "score": 0.2595728332224639}], "pi": [{"caption": "\\pi", "snippet": "\\pi", "meta": "cmd", "score": 0.2592175053896314}], "hat": [{"caption": "\\hat{}", "snippet": "\\hat{$1}", "meta": "cmd", "score": 0.2527083680364611}, {"caption": "\\hat", "snippet": "\\hat", "meta": "cmd", "score": 0.2527083680364611}], "bibliographystyle": [{"caption": "\\bibliographystyle{}", "snippet": "\\bibliographystyle{$1}", "meta": "cmd", "score": 0.2512309566475883}], "small": [{"caption": "\\small", "snippet": "\\small", "meta": "cmd", "score": 0.2450988794210686}, {"caption": "\\small{}", "snippet": "\\small{$1}", "meta": "cmd", "score": 0.2450988794210686}], "LaTeX": [{"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "cmd", "score": 0.2334089308452787}], "cdot": [{"caption": "\\cdot", "snippet": "\\cdot", "meta": "cmd", "score": 0.23088610647001026}], "footnote": [{"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "cmd", "score": 0.2253056071787701}], "newtheorem": [{"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "cmd", "score": 0.215689795055434}], "Delta": [{"caption": "\\Delta", "snippet": "\\Delta", "meta": "cmd", "score": 0.21459341295037362}], "tau": [{"caption": "\\tau", "snippet": "\\tau", "meta": "cmd", "score": 0.21312236724814887}], "leq": [{"caption": "\\leq", "snippet": "\\leq", "meta": "cmd", "score": 0.2060007487358172}], "hfill": [{"caption": "\\hfill", "snippet": "\\hfill", "meta": "cmd", "score": 0.2058248088519886}], "footnotesize": [{"caption": "\\footnotesize", "snippet": "\\footnotesize", "meta": "cmd", "score": 0.204175501337592}, {"caption": "\\footnotesize{}", "snippet": "\\footnotesize{$1}", "meta": "cmd", "score": 0.204175501337592}], "sqrt": [{"caption": "\\sqrt{}", "snippet": "\\sqrt{$1}", "meta": "cmd", "score": 0.2025811234453995}], "epsilon": [{"caption": "\\epsilon", "snippet": "\\epsilon", "meta": "cmd", "score": 0.2005136761359043}], "Large": [{"caption": "\\Large", "snippet": "\\Large", "meta": "cmd", "score": 0.1987771081149759}, {"caption": "\\Large{}", "snippet": "\\Large{$1}", "meta": "cmd", "score": 0.1987771081149759}], "cvitem": [{"caption": "\\cvitem{}{}", "snippet": "\\cvitem{$1}{$2}", "meta": "cmd", "score": 0.19605476980016281}], "rho": [{"caption": "\\rho", "snippet": "\\rho", "meta": "cmd", "score": 0.19604297402684775}], "large": [{"caption": "\\large", "snippet": "\\large", "meta": "cmd", "score": 0.1956189384117297}, {"caption": "\\large{}", "snippet": "\\large{$1}", "meta": "cmd", "score": 0.1956189384117297}], "omega": [{"caption": "\\omega", "snippet": "\\omega", "meta": "cmd", "score": 0.19326783415115262}], "mathrm": [{"caption": "\\mathrm{}", "snippet": "\\mathrm{$1}", "meta": "cmd", "score": 0.19117752976172653}], "boldsymbol": [{"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "cmd", "score": 0.1816956061674236}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "cmd", "score": 0.1816956061674236}], "gamma": [{"caption": "\\gamma", "snippet": "\\gamma", "meta": "cmd", "score": 0.18003922291638358}], "clearpage": [{"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "cmd", "score": 0.1789117552185788}], "infty": [{"caption": "\\infty", "snippet": "\\infty", "meta": "cmd", "score": 0.17847081674512388}], "phi": [{"caption": "\\phi", "snippet": "\\phi", "meta": "cmd", "score": 0.1740662514433123}], "partial": [{"caption": "\\partial", "snippet": "\\partial", "meta": "cmd", "score": 0.17187685677568806}], "include": [{"caption": "\\include{}", "snippet": "\\include{$1}", "meta": "cmd", "score": 0.1547080054979312}], "quad": [{"caption": "\\quad", "snippet": "\\quad", "meta": "cmd", "score": 0.15315377272167457}], "address": [{"caption": "\\address{}", "snippet": "\\address{$1}", "meta": "cmd", "score": 0.1525055392611109}, {"caption": "\\address[]{}", "snippet": "\\address[$1]{$2}", "meta": "cmd", "score": 0.1525055392611109}, {"caption": "\\address{}{}{}", "snippet": "\\address{$1}{$2}{$3}", "meta": "cmd", "score": 0.1525055392611109}], "email": [{"caption": "\\email{}", "snippet": "\\email{$1}", "meta": "cmd", "score": 0.1522294670109857}], "paragraph": [{"caption": "\\paragraph{}", "snippet": "\\paragraph{$1}", "meta": "cmd", "score": 0.152074250347974}], "varepsilon": [{"caption": "\\varepsilon", "snippet": "\\varepsilon", "meta": "cmd", "score": 0.05477657871297898}], "zeta": [{"caption": "\\zeta", "snippet": "\\zeta", "meta": "cmd", "score": 0.023330249803752954}], "eta": [{"caption": "\\eta", "snippet": "\\eta", "meta": "cmd", "score": 0.111817391004994}], "vartheta": [{"caption": "\\vartheta", "snippet": "\\vartheta", "meta": "cmd", "score": 0.0025822992078068712}], "iota": [{"caption": "\\iota", "snippet": "\\iota", "meta": "cmd", "score": 0.0024774003791525486}], "kappa": [{"caption": "\\kappa", "snippet": "\\kappa", "meta": "cmd", "score": 0.04887876299369008}], "nu": [{"caption": "\\nu", "snippet": "\\nu", "meta": "cmd", "score": 0.0920859476352619}], "xi": [{"caption": "\\xi", "snippet": "\\xi", "meta": "cmd", "score": 0.0651807412256814}], "varpi": [{"caption": "\\varpi", "snippet": "\\varpi", "meta": "cmd", "score": 0.0007039358167790341}], "varrho": [{"caption": "\\varrho", "snippet": "\\varrho", "meta": "cmd", "score": 0.0011279491613898612}], "varsigma": [{"caption": "\\varsigma", "snippet": "\\varsigma", "meta": "cmd", "score": 0.0010424880711234978}, {"caption": "\\varsigma{}", "snippet": "\\varsigma{$1}", "meta": "cmd", "score": 0.0010424880711234978}], "upsilon": [{"caption": "\\upsilon", "snippet": "\\upsilon", "meta": "cmd", "score": 0.00420715572598688}], "varphi": [{"caption": "\\varphi", "snippet": "\\varphi", "meta": "cmd", "score": 0.03351251516668212}], "chi": [{"caption": "\\chi", "snippet": "\\chi", "meta": "cmd", "score": 0.043373492287805675}], "psi": [{"caption": "\\psi", "snippet": "\\psi", "meta": "cmd", "score": 0.10053993009080235}], "Gamma": [{"caption": "\\Gamma", "snippet": "\\Gamma", "meta": "cmd", "score": 0.04801549269801977}], "Theta": [{"caption": "\\Theta", "snippet": "\\Theta", "meta": "cmd", "score": 0.03818881869461029}], "Lambda": [{"caption": "\\Lambda", "snippet": "\\Lambda", "meta": "cmd", "score": 0.03221475401831193}], "Xi": [{"caption": "\\Xi", "snippet": "\\Xi", "meta": "cmd", "score": 0.01060997225400494}], "Pi": [{"caption": "\\Pi", "snippet": "\\Pi", "meta": "cmd", "score": 0.021264671817473237}], "Sigma": [{"caption": "\\Sigma", "snippet": "\\Sigma", "meta": "cmd", "score": 0.05770458773313341}], "Upsilon": [{"caption": "\\Upsilon", "snippet": "\\Upsilon", "meta": "cmd", "score": 0.00032875192955749566}], "Phi": [{"caption": "\\Phi", "snippet": "\\Phi", "meta": "cmd", "score": 0.054035689250940926}], "Psi": [{"caption": "\\Psi", "snippet": "\\Psi", "meta": "cmd", "score": 0.03056589143021648}], "Omega": [{"caption": "\\Omega", "snippet": "\\Omega", "meta": "cmd", "score": 0.09513235192389502}]}