From e53a24f8f51598abe9bcbf903a41325d83fe76e9 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Wed, 4 Oct 2017 17:56:43 +0100 Subject: [PATCH 01/10] starting to generalize from labels to metadata --- .../ProjectMetadata/MetadataController.coffee | 36 +++++++++++++ .../ProjectMetadata/MetadataHandler.coffee | 50 +++++++++++++++++++ services/web/app/coffee/router.coffee | 3 ++ .../ide/metadata/MetadataManager.coffee | 13 +++++ .../ide/metadata/services/metadata.coffee | 46 +++++++++++++++++ 5 files changed, 148 insertions(+) create mode 100644 services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee create mode 100644 services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee create mode 100644 services/web/public/coffee/ide/metadata/MetadataManager.coffee create mode 100644 services/web/public/coffee/ide/metadata/services/metadata.coffee diff --git a/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee b/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee new file mode 100644 index 0000000000..81baa2bf93 --- /dev/null +++ b/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee @@ -0,0 +1,36 @@ +EditorRealTimeController = require "../Editor/EditorRealTimeController" +MetadataHandler = require './MetadataHandler' +logger = require 'logger-sharelatex' + + +module.exports = MetadataController = + + getAllMetadata: (req, res, next) -> + project_id = req.params.project_id + logger.log {project_id}, "getting metadata for project" + MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> + if err? + logger.err {project_id, err}, "[MetadataController] error getting metadata from project" + return next(err) + res.json { + projectId: project_id + projectLabels: projectMetadata["labels"] + projectPackages: projectMetadata["packages"] + } + + broadcastMetadataForDoc: (req, res, next) -> + project_id = req.params.project_id + doc_id = req.params.doc_id + logger.log {project_id, doc_id}, "getting metadata for doc" + MetadataHandler.getMetadataForDoc project_id, doc_id, (err, docMetadata) -> + if err? + logger.err {project_id, doc_id, err}, "[MetadataController] error getting metadata from doc" + return next(err) + EditorRealTimeController.emitToRoom project_id, "broadcastDocMetadata", { + docId: doc_id + metadata: { + labels: docMetadata["labels"] + packages: docMetadata["packages"] + } + } + res.sendStatus(200) diff --git a/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee b/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee new file mode 100644 index 0000000000..6637b382b3 --- /dev/null +++ b/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee @@ -0,0 +1,50 @@ +ProjectEntityHandler = require "../Project/ProjectEntityHandler" +DocumentUpdaterHandler = require '../DocumentUpdater/DocumentUpdaterHandler' + + +module.exports = MetadataHandler = + + labelCaptureRegex: () -> + /\\label\{([^\}\n\\]{0,80})\}/g + + packageCaptureRegex: () -> + /\\usepackage(?:\[((?:.|\n)*?)])?\s*?{((?:.|\n)*?)}/gm + + getMetadataForProject: (projectId, callback=(err, projectMetadata)->) -> + DocumentUpdaterHandler.flushProjectToMongo projectId. (err) -> + if err? + return callback(err) + ProjectEntityHandler.getAllDocs projectId, (err, docs) -> + if err? + return callback(err) + projectMetadata = MetadataHandler.extractMetadataFromProjectDocs docs + callback(null, projectMetadata) + + getMetadataForDoc: (projectId, docId, callback=(err, docMetadata)->) -> + DocumentUpdaterHandler.flushDocToMongo projectId, docId, (err) -> + if err? + return callback(err) + ProjectEntityHandler.getDoc projectId, docId, (err, lines) -> + if err? + return callback(err) + docMetadata = MetadataHandler.extractMetadataFromDoc lines + callback(null, docMetadata) + + extractMetadataFromProjectDocs: (projectDocs) -> + projectMetadata = {} + for _path, doc of projectDocs + projectMetadata[doc._id] = MetadataHandler.extractMetadataFromDoc doc.lines + return projectMetadata + + extractMetadataFromDoc: (lines) -> + docMetadata = {labels: [] packages: []} + label_re = MetadataHandler.labelCaptureRegex() + package_re = MetadataHandler.packageCaptureRegex() + for line in lines # FIXME: usepackage can run over multiple lines + while labelMatch = label_re.exec line + if labelMatch[1] + docMetadata.labels.push labelMatch[1] + while packageMatch = package_re.exec line + if packageMatch[2] + docMetadata.packages.push packageMatch[2] + return docMetadata diff --git a/services/web/app/coffee/router.coffee b/services/web/app/coffee/router.coffee index 2ebde53748..075fbc8905 100644 --- a/services/web/app/coffee/router.coffee +++ b/services/web/app/coffee/router.coffee @@ -204,6 +204,9 @@ module.exports = class Router webRouter.get '/project/:project_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.getAllLabels webRouter.post '/project/:project_id/doc/:doc_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.broadcastLabelsForDoc + webRouter.get '/project/:project_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetadataController.getAllMetadata + webRouter.post '/project/:project_id/doc/:doc_id/metadata'. AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetadataController.broadcastMetadataForDoc + webRouter.get '/tag', AuthenticationController.requireLogin(), TagsController.getAllTags webRouter.post '/tag', AuthenticationController.requireLogin(), TagsController.createTag webRouter.post '/tag/:tag_id/rename', AuthenticationController.requireLogin(), TagsController.renameTag diff --git a/services/web/public/coffee/ide/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/metadata/MetadataManager.coffee new file mode 100644 index 0000000000..fa908e7dd8 --- /dev/null +++ b/services/web/public/coffee/ide/metadata/MetadataManager.coffee @@ -0,0 +1,13 @@ +define [], () -> + + class MetadataManager + + constructor: (@ide, @$scope, @metadata) -> + + @ide.socket.on 'broadcastDocMetadata', (data) => + @metadata.onBroadcastDocMetadata(data) + @$scope.$on 'entity:deleted', @metadata.onEntityDeleted + @$scope.$on 'file:upload:complete', @metadata.fileUploadComplete + + loadProjectMetadataFromServer: () -> + @metadata.loadProjectMetadataFromServer() diff --git a/services/web/public/coffee/ide/metadata/services/metadata.coffee b/services/web/public/coffee/ide/metadata/services/metadata.coffee new file mode 100644 index 0000000000..e6ad3aec43 --- /dev/null +++ b/services/web/public/coffee/ide/metadata/services/metadata.coffee @@ -0,0 +1,46 @@ +define [ + "base" +], (App) -> + + App.factory 'metadata', ($http, ide) -> + + state = {documents: {}} + + metadata = { + state: state + } + + metadata.onBroadcastDocMetadata = (data) -> + if data.docId and data.metadata + state.documents[data.docId] = data.metadata + + metadata.onEntityDeleted = (e, entity) -> + if entity.type == 'doc' + delete state.documents[entity.id] + + metadata.onFileUploadComplete = (e, upload) -> + if upload.entity_type == 'doc' + metadata.loadDocMetadataFromServer(upload.entity_id) + + metadata.getAllMetadata = () -> + labels = _.flatten(meta['labels'] for docId, meta of state.documents) + packages = _.flatten(meta['packages'] for docId, meta of state.documents) + {labels: labels, packages: packages} + + metadata.loadProjectMetadataFromServer = () -> + $http + .get("/project/#{window.project_id}/metadata") + .then (response) -> + { data } = response + if data.projectMetadata + for docId, docMetadata of data.projectMetadata + state.documents[docId] = docMetadata + + metadata.loadDocMetadataFromServer = (docId) -> + $http + .post( + "/project/#{window.project_id}/doc/#{docId}/metadata", + {_csrf: window.csrfToken} + ) + + return metadata From 507bb568a3efbcae01092def83de4e90d2b77caa Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Thu, 5 Oct 2017 14:19:30 +0100 Subject: [PATCH 02/10] labels -> metadata --- .../ProjectMetadata/MetadataController.coffee | 26 ++++++- .../ide/editor/directives/aceEditor.coffee | 43 ++++++----- .../auto-complete/AutoCompleteManager.coffee | 8 +- .../aceEditor/metadata/MetadataManager.coffee | 77 +++++++++++++++++++ 4 files changed, 130 insertions(+), 24 deletions(-) create mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee diff --git a/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee b/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee index 81baa2bf93..a6da79f010 100644 --- a/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee +++ b/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee @@ -5,6 +5,30 @@ logger = require 'logger-sharelatex' module.exports = MetadataController = + getAllLabels: (req, res, next) -> + project_id = req.params.project_id + logger.log {project_id}, "getting labels for project" + MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> + if err? + logger.err {project_id, err}, "[MetadataController] error getting labels from project" + return next err + res.json { + projectId: project_id + projectLabels: projectMetadata["labels"] + } + + getAllPackages: (req, res, next) -> + project_id = req.params.project_id + logger.log {project_id}, "getting labels for project" + MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> + if err? + logger.err {project_id, err}, "[MetadataController] error getting labels from project" + return next err + res.json { + projectId: project_id + projectPackages: projectMetadata["packages"] + } + getAllMetadata: (req, res, next) -> project_id = req.params.project_id logger.log {project_id}, "getting metadata for project" @@ -33,4 +57,4 @@ module.exports = MetadataController = packages: docMetadata["packages"] } } - res.sendStatus(200) + res.sendStatus 200 diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index 40ae0bb06f..6368de5044 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -9,11 +9,13 @@ define [ "ide/editor/directives/aceEditor/highlights/HighlightsManager" "ide/editor/directives/aceEditor/cursor-position/CursorPositionManager" "ide/editor/directives/aceEditor/track-changes/TrackChangesManager" - "ide/editor/directives/aceEditor/labels/LabelsManager" - "ide/labels/services/labels" + # "ide/editor/directives/aceEditor/labels/LabelsManager" + "ide/editor/directives/aceEditor/metadata/MetadataManager" + # "ide/labels/services/labels" + "ide/metadata/services/metadata" "ide/graphics/services/graphics" "ide/preamble/services/preamble" -], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, LabelsManager) -> +], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, MetadataManager) -> EditSession = ace.require('ace/edit_session').EditSession ModeList = ace.require('ace/ext/modelist') @@ -35,7 +37,7 @@ define [ url = ace.config._moduleUrl(args...) + "?fingerprint=#{window.aceFingerprint}" return url - App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, labels, graphics, preamble) -> + App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, metadata, graphics, preamble) -> monkeyPatchSearch($rootScope, $compile) return { @@ -102,8 +104,9 @@ define [ highlightsManager = new HighlightsManager(scope, editor, element) cursorPositionManager = new CursorPositionManager(scope, editor, element, localStorage) trackChangesManager = new TrackChangesManager(scope, editor, element) - labelsManager = new LabelsManager(scope, editor, element, labels) - autoCompleteManager = new AutoCompleteManager(scope, editor, element, labelsManager, graphics, preamble) + metadataManager = new metadataManager(scope, editor, element, metadata) + # labelsManager = new LabelsManager(scope, editor, element, labels) + autoCompleteManager = new AutoCompleteManager(scope, editor, element, metadataManager, graphics, preamble) # Prevert Ctrl|Cmd-S from triggering save dialog @@ -115,16 +118,16 @@ define [ editor.commands.removeCommand "transposeletters" editor.commands.removeCommand "showSettingsMenu" editor.commands.removeCommand "foldall" - + # For European keyboards, the / is above 7 so needs Shift pressing. - # This comes through as Command-Shift-/ on OS X, which is mapped to + # This comes through as Command-Shift-/ on OS X, which is mapped to # toggleBlockComment. # This doesn't do anything for LaTeX, so remap this to togglecomment to # work for European keyboards as normal. # On Windows, the key combo comes as Ctrl-Shift-7. editor.commands.removeCommand "toggleBlockComment" editor.commands.removeCommand "togglecomment" - + editor.commands.addCommand { name: "togglecomment", bindKey: { win: "Ctrl-/|Ctrl-Shift-7", mac: "Command-/|Command-Shift-/" }, @@ -140,7 +143,7 @@ define [ exec: (editor) -> ace.require("ace/ext/searchbox").Search(editor, true) readOnly: true - + # Bold text on CMD+B editor.commands.addCommand name: "bold", @@ -154,7 +157,7 @@ define [ text = editor.getCopyText() editor.insert("\\textbf{" + text + "}") readOnly: false - + # Italicise text on CMD+I editor.commands.addCommand name: "italics", @@ -171,7 +174,7 @@ define [ scope.$watch "onCtrlEnter", (callback) -> if callback? - editor.commands.addCommand + editor.commands.addCommand name: "compile", bindKey: win: "Ctrl-Enter", mac: "Command-Enter" exec: (editor) => @@ -180,7 +183,7 @@ define [ scope.$watch "onCtrlJ", (callback) -> if callback? - editor.commands.addCommand + editor.commands.addCommand name: "toggle-review-panel", bindKey: win: "Ctrl-J", mac: "Command-J" exec: (editor) => @@ -189,7 +192,7 @@ define [ scope.$watch "onCtrlShiftC", (callback) -> if callback? - editor.commands.addCommand + editor.commands.addCommand name: "add-new-comment", bindKey: win: "Ctrl-Shift-C", mac: "Command-Shift-C" exec: (editor) => @@ -198,7 +201,7 @@ define [ scope.$watch "onCtrlShiftA", (callback) -> if callback? - editor.commands.addCommand + editor.commands.addCommand name: "toggle-track-changes", bindKey: win: "Ctrl-Shift-A", mac: "Command-Shift-A" exec: (editor) => @@ -302,7 +305,7 @@ define [ if updateCount == 100 event_tracking.send 'editor-interaction', 'multi-doc-update' scope.$emit "#{scope.name}:change" - + onScroll = (scrollTop) -> return if !scope.eventsBridge? height = editor.renderer.layerConfig.maxHeight @@ -311,7 +314,7 @@ define [ onScrollbarVisibilityChanged = (event, vRenderer) -> return if !scope.eventsBridge? scope.eventsBridge.emit "aceScrollbarVisibilityChanged", vRenderer.scrollBarV.isVisible, vRenderer.scrollBarV.width - + if scope.eventsBridge? editor.renderer.on "scrollbarVisibilityChanged", onScrollbarVisibilityChanged @@ -401,14 +404,14 @@ define [ session = editor.getSession() session.off "changeScrollTop" - + doc = session.getDocument() doc.off "change", onChange - + editor.renderer.on "changeCharacterSize", () -> scope.$apply () -> scope.rendererData.lineHeight = editor.renderer.lineHeight - + scope.$watch "rendererData", (rendererData) -> if rendererData? rendererData.lineHeight = editor.renderer.lineHeight diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index 24a524b4b6..3306509f3c 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -9,7 +9,7 @@ define [ aceSnippetManager = ace.require('ace/snippets').snippetManager class AutoCompleteManager - constructor: (@$scope, @editor, @element, @labelsManager, @graphics, @preamble) -> + constructor: (@$scope, @editor, @element, @metadataManager, @graphics, @preamble) -> @suggestionManager = new CommandManager() @monkeyPatchAutocomplete() @@ -34,6 +34,8 @@ define [ enableLiveAutocompletion: false }) + # metadataManager = @metadataManager + SnippetCompleter = new EnvironmentManager() Graphics = @graphics @@ -63,7 +65,7 @@ define [ } callback null, result - labelsManager = @labelsManager + metadataManager = @metadataManager LabelsCompleter = getCompletions: (editor, session, pos, prefix, callback) -> context = Helpers.getContext(editor, pos) @@ -80,7 +82,7 @@ define [ meta: "cross-reference", score: 60 } - for label in labelsManager.getAllLabels() + for label in metadataManager.getAllLabels() result.push { caption: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", value: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee new file mode 100644 index 0000000000..8f104f3ace --- /dev/null +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee @@ -0,0 +1,77 @@ +define [ + "ace/ace" +], () -> + Range = ace.require("ace/range").Range + + getLastCommandFragment = (lineUpToCursor) -> + if m = lineUpToCursor.match(/(\\[^\\]+)$/) + return m[1] + else + return null + + class MetadataManager + constructor: (@$scope, @editor, @element, @Metadata) -> + @debouncer = {} # DocId => Timeout + + onChange = (change) => + if change.remote + return + if change.action not in ['remove', 'insert'] + return + cursorPosition = @editor.getCursorPosition() + end = change.end + range = new Range(end.row, 0, end.row, end.column) + lineUpToCursor = @editor.getSession().getTextRange(range) + commandFragment = getLastCommandFragment(lineUpToCursor) + + linesContainLabel = _.any( + change.lines, + (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/) + ) + linesContainPackage = _.any( + change.lines, + (line) -> line.match(/\\usepackage(?:\[.*?])?\s*{.*?}/) + ) + linesContainMeta = linesContainPackage or linesContainLabel + + lastCommandFragmentIsLabel = commandFragment?.startsWith '\\label{' + lastCommandFragmentIsPackage = commandFragment?.startsWith '\\usepackage' + lastCommandFragmentIsMeta = lastCommandFragmentIsPackage or lastCommandFragmentIsLabel + + if linesContainMeta or lastCommandFragmentIsMeta + @scheduleLoadCurrentDocMetadataFromServer() + + @editor.on 'changeSession', (e) => + e.oldSession.off 'change', onChange + e.session.on 'change', onChange + + loadCurrentDocMetadataFromServer: () -> + currentDocId = @$scope.docId + @Metadata.loadDocMetadataFromServer currentDocId + + loadDocMetadataFromServer: (docId) -> + @Metadata.loadDocMetadataFromServer docId + + scheduleLoadCurrentDocMetadataFromServer: () -> + # De-bounce loading labels with a timeout + currentDocId = @$scope.docId + existingTimeout = @debouncer[currentDocId] + if existingTimeout? + clearTimeout(existingTimeout) + delete @debouncer[currentDocId] + @debouncer[currentDocId] = setTimeout( + () => + @loadDocMetadataFromServer(currentDocId) + delete @debouncer[currentDocId] + , 1000 + , this + ) + + getAllLabels: () -> + @Metadata.getAllLabels() + + getAllPackages: () -> + @Metadata.getAllPackages() + + getAllMetadata: () -> + @Metadata.getAllMetadata() From cfca4b5d6c1dc383d19baa4c73f77801324b0cfb Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Fri, 6 Oct 2017 17:15:50 +0100 Subject: [PATCH 03/10] modified labels service to include packages aware autocompletion --- .../Features/Labels/LabelsController.coffee | 10 +-- .../Features/Labels/LabelsHandler.coffee | 48 +++++++----- .../ProjectMetadata/MetadataController.coffee | 60 --------------- .../ProjectMetadata/MetadataHandler.coffee | 50 ------------ services/web/app/coffee/router.coffee | 4 +- .../ide/editor/directives/aceEditor.coffee | 17 ++-- .../auto-complete/AutoCompleteManager.coffee | 21 ++--- .../auto-complete/CommandManager.coffee | 22 +++++- .../aceEditor/labels/LabelsManager.coffee | 28 +++++-- .../aceEditor/metadata/MetadataManager.coffee | 77 ------------------- .../coffee/ide/labels/LabelsManager.coffee | 7 +- .../coffee/ide/labels/services/labels.coffee | 17 ++-- .../ide/metadata/MetadataManager.coffee | 13 ---- .../ide/metadata/services/metadata.coffee | 46 ----------- 14 files changed, 108 insertions(+), 312 deletions(-) delete mode 100644 services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee delete mode 100644 services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee delete mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee delete mode 100644 services/web/public/coffee/ide/metadata/MetadataManager.coffee delete mode 100644 services/web/public/coffee/ide/metadata/services/metadata.coffee diff --git a/services/web/app/coffee/Features/Labels/LabelsController.coffee b/services/web/app/coffee/Features/Labels/LabelsController.coffee index 7608a40021..b8c245f7b7 100644 --- a/services/web/app/coffee/Features/Labels/LabelsController.coffee +++ b/services/web/app/coffee/Features/Labels/LabelsController.coffee @@ -8,21 +8,21 @@ module.exports = LabelsController = getAllLabels: (req, res, next) -> project_id = req.params.project_id logger.log {project_id}, "getting all labels for project" - LabelsHandler.getAllLabelsForProject project_id, (err, projectLabels) -> + LabelsHandler.getAllMetaForProject project_id, (err, projectMeta) -> if err? logger.err {project_id, err}, "[LabelsController] error getting all labels from project" return next(err) - res.json {projectId: project_id, projectLabels: projectLabels} + res.json {projectId: project_id, projectMeta: projectMeta} broadcastLabelsForDoc: (req, res, next) -> project_id = req.params.project_id doc_id = req.params.doc_id logger.log {project_id, doc_id}, "getting labels for doc" - LabelsHandler.getLabelsForDoc project_id, doc_id, (err, docLabels) -> + LabelsHandler.getMetaForDoc project_id, doc_id, (err, docMeta) -> if err? logger.err {project_id, doc_id, err}, "[LabelsController] error getting labels from doc" return next(err) - EditorRealTimeController.emitToRoom project_id, 'broadcastDocLabels', { - docId: doc_id, labels: docLabels + EditorRealTimeController.emitToRoom project_id, 'broadcastDocMeta', { + docId: doc_id, meta: docMeta } res.sendStatus(200) diff --git a/services/web/app/coffee/Features/Labels/LabelsHandler.coffee b/services/web/app/coffee/Features/Labels/LabelsHandler.coffee index 1d4cc013d5..b074f461a8 100644 --- a/services/web/app/coffee/Features/Labels/LabelsHandler.coffee +++ b/services/web/app/coffee/Features/Labels/LabelsHandler.coffee @@ -7,37 +7,45 @@ module.exports = LabelsHandler = labelCaptureRegex: () -> /\\label\{([^\}\n\\]{0,80})\}/g - getAllLabelsForProject: (projectId, callback=(err, projectLabels)->) -> + packageCaptureRegex: () -> + /^\\usepackage(?:\[((?:.|\n)*?)])?\s*?{((?:.|\n)*?)}/gm + + getAllMetaForProject: (projectId, callback=(err, projectMeta)->) -> DocumentUpdaterHandler.flushProjectToMongo projectId, (err) -> if err? - return callback(err) + return callback err ProjectEntityHandler.getAllDocs projectId, (err, docs) -> if err? - return callback(err) - projectLabels = LabelsHandler.extractLabelsFromProjectDocs docs - callback(null, projectLabels) + return callback err + projectMeta = LabelsHandler.extractMetaFromProjectDocs docs + callback null, projectMeta - getLabelsForDoc: (projectId, docId, callback=(err, docLabels)->) -> + getMetaForDoc: (projectId, docId, callback=(err, docMeta)->) -> DocumentUpdaterHandler.flushDocToMongo projectId, docId, (err) -> if err? - return callback(err) + return callback err ProjectEntityHandler.getDoc projectId, docId, (err, lines) -> if err? - return callback(err) - docLabels = LabelsHandler.extractLabelsFromDoc lines - callback(null, docLabels) + return callback err + docMeta = LabelsHandler.extractMetaFromDoc lines + callback null, docMeta - extractLabelsFromDoc: (lines) -> - docLabels = [] + extractMetaFromDoc: (lines) -> + docMeta = {labels: [], packages: []} + label_re = LabelsHandler.labelCaptureRegex() + package_re = LabelsHandler.packageCaptureRegex() for line in lines - re = LabelsHandler.labelCaptureRegex() - while (labelMatch = re.exec(line)) + while labelMatch = label_re.exec line if labelMatch[1] - docLabels.push(labelMatch[1]) - return docLabels + docMeta.labels.push labelMatch[1] + while packageMatch = package_re.exec line + if packageMatch[2] + for pkg in packageMatch[2].split ',' + docMeta.packages.push pkg.trim() + return docMeta - extractLabelsFromProjectDocs: (projectDocs) -> - projectLabels = {} # docId => List[Label] + extractMetaFromProjectDocs: (projectDocs) -> + projectMeta = {} for _path, doc of projectDocs - projectLabels[doc._id] = LabelsHandler.extractLabelsFromDoc(doc.lines) - return projectLabels + projectMeta[doc._id] = LabelsHandler.extractMetaFromDoc doc.lines + return projectMeta diff --git a/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee b/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee deleted file mode 100644 index a6da79f010..0000000000 --- a/services/web/app/coffee/Features/ProjectMetadata/MetadataController.coffee +++ /dev/null @@ -1,60 +0,0 @@ -EditorRealTimeController = require "../Editor/EditorRealTimeController" -MetadataHandler = require './MetadataHandler' -logger = require 'logger-sharelatex' - - -module.exports = MetadataController = - - getAllLabels: (req, res, next) -> - project_id = req.params.project_id - logger.log {project_id}, "getting labels for project" - MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> - if err? - logger.err {project_id, err}, "[MetadataController] error getting labels from project" - return next err - res.json { - projectId: project_id - projectLabels: projectMetadata["labels"] - } - - getAllPackages: (req, res, next) -> - project_id = req.params.project_id - logger.log {project_id}, "getting labels for project" - MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> - if err? - logger.err {project_id, err}, "[MetadataController] error getting labels from project" - return next err - res.json { - projectId: project_id - projectPackages: projectMetadata["packages"] - } - - getAllMetadata: (req, res, next) -> - project_id = req.params.project_id - logger.log {project_id}, "getting metadata for project" - MetadataHandler.getMetadataForProject project_id, (err, projectMetadata) -> - if err? - logger.err {project_id, err}, "[MetadataController] error getting metadata from project" - return next(err) - res.json { - projectId: project_id - projectLabels: projectMetadata["labels"] - projectPackages: projectMetadata["packages"] - } - - broadcastMetadataForDoc: (req, res, next) -> - project_id = req.params.project_id - doc_id = req.params.doc_id - logger.log {project_id, doc_id}, "getting metadata for doc" - MetadataHandler.getMetadataForDoc project_id, doc_id, (err, docMetadata) -> - if err? - logger.err {project_id, doc_id, err}, "[MetadataController] error getting metadata from doc" - return next(err) - EditorRealTimeController.emitToRoom project_id, "broadcastDocMetadata", { - docId: doc_id - metadata: { - labels: docMetadata["labels"] - packages: docMetadata["packages"] - } - } - res.sendStatus 200 diff --git a/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee b/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee deleted file mode 100644 index 6637b382b3..0000000000 --- a/services/web/app/coffee/Features/ProjectMetadata/MetadataHandler.coffee +++ /dev/null @@ -1,50 +0,0 @@ -ProjectEntityHandler = require "../Project/ProjectEntityHandler" -DocumentUpdaterHandler = require '../DocumentUpdater/DocumentUpdaterHandler' - - -module.exports = MetadataHandler = - - labelCaptureRegex: () -> - /\\label\{([^\}\n\\]{0,80})\}/g - - packageCaptureRegex: () -> - /\\usepackage(?:\[((?:.|\n)*?)])?\s*?{((?:.|\n)*?)}/gm - - getMetadataForProject: (projectId, callback=(err, projectMetadata)->) -> - DocumentUpdaterHandler.flushProjectToMongo projectId. (err) -> - if err? - return callback(err) - ProjectEntityHandler.getAllDocs projectId, (err, docs) -> - if err? - return callback(err) - projectMetadata = MetadataHandler.extractMetadataFromProjectDocs docs - callback(null, projectMetadata) - - getMetadataForDoc: (projectId, docId, callback=(err, docMetadata)->) -> - DocumentUpdaterHandler.flushDocToMongo projectId, docId, (err) -> - if err? - return callback(err) - ProjectEntityHandler.getDoc projectId, docId, (err, lines) -> - if err? - return callback(err) - docMetadata = MetadataHandler.extractMetadataFromDoc lines - callback(null, docMetadata) - - extractMetadataFromProjectDocs: (projectDocs) -> - projectMetadata = {} - for _path, doc of projectDocs - projectMetadata[doc._id] = MetadataHandler.extractMetadataFromDoc doc.lines - return projectMetadata - - extractMetadataFromDoc: (lines) -> - docMetadata = {labels: [] packages: []} - label_re = MetadataHandler.labelCaptureRegex() - package_re = MetadataHandler.packageCaptureRegex() - for line in lines # FIXME: usepackage can run over multiple lines - while labelMatch = label_re.exec line - if labelMatch[1] - docMetadata.labels.push labelMatch[1] - while packageMatch = package_re.exec line - if packageMatch[2] - docMetadata.packages.push packageMatch[2] - return docMetadata diff --git a/services/web/app/coffee/router.coffee b/services/web/app/coffee/router.coffee index 075fbc8905..a1dc85dafe 100644 --- a/services/web/app/coffee/router.coffee +++ b/services/web/app/coffee/router.coffee @@ -44,6 +44,7 @@ SudoModeMiddlewear = require('./Features/SudoMode/SudoModeMiddlewear') AnalyticsRouter = require('./Features/Analytics/AnalyticsRouter') AnnouncementsController = require("./Features/Announcements/AnnouncementsController") LabelsController = require('./Features/Labels/LabelsController') +# MetadataController = require('./Features/ProjectMetadata/MetadataController') logger = require("logger-sharelatex") _ = require("underscore") @@ -204,9 +205,6 @@ module.exports = class Router webRouter.get '/project/:project_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.getAllLabels webRouter.post '/project/:project_id/doc/:doc_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.broadcastLabelsForDoc - webRouter.get '/project/:project_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetadataController.getAllMetadata - webRouter.post '/project/:project_id/doc/:doc_id/metadata'. AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetadataController.broadcastMetadataForDoc - webRouter.get '/tag', AuthenticationController.requireLogin(), TagsController.getAllTags webRouter.post '/tag', AuthenticationController.requireLogin(), TagsController.createTag webRouter.post '/tag/:tag_id/rename', AuthenticationController.requireLogin(), TagsController.renameTag diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index 6368de5044..14f0a66b1b 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -9,13 +9,11 @@ define [ "ide/editor/directives/aceEditor/highlights/HighlightsManager" "ide/editor/directives/aceEditor/cursor-position/CursorPositionManager" "ide/editor/directives/aceEditor/track-changes/TrackChangesManager" - # "ide/editor/directives/aceEditor/labels/LabelsManager" - "ide/editor/directives/aceEditor/metadata/MetadataManager" - # "ide/labels/services/labels" - "ide/metadata/services/metadata" + "ide/editor/directives/aceEditor/labels/LabelsManager" + "ide/labels/services/labels" "ide/graphics/services/graphics" "ide/preamble/services/preamble" -], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, MetadataManager) -> +], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, LabelsManager) -> EditSession = ace.require('ace/edit_session').EditSession ModeList = ace.require('ace/ext/modelist') @@ -37,7 +35,9 @@ define [ url = ace.config._moduleUrl(args...) + "?fingerprint=#{window.aceFingerprint}" return url - App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, metadata, graphics, preamble) -> + # console.log 'making it to right before aceEditor' + + App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, labels, graphics, preamble) -> monkeyPatchSearch($rootScope, $compile) return { @@ -104,9 +104,8 @@ define [ highlightsManager = new HighlightsManager(scope, editor, element) cursorPositionManager = new CursorPositionManager(scope, editor, element, localStorage) trackChangesManager = new TrackChangesManager(scope, editor, element) - metadataManager = new metadataManager(scope, editor, element, metadata) - # labelsManager = new LabelsManager(scope, editor, element, labels) - autoCompleteManager = new AutoCompleteManager(scope, editor, element, metadataManager, graphics, preamble) + labelsManager = new LabelsManager(scope, editor, element, labels) + autoCompleteManager = new AutoCompleteManager(scope, editor, element, labelsManager, graphics, preamble) # Prevert Ctrl|Cmd-S from triggering save dialog diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index 3306509f3c..d2bbbf31e6 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -9,8 +9,8 @@ define [ aceSnippetManager = ace.require('ace/snippets').snippetManager class AutoCompleteManager - constructor: (@$scope, @editor, @element, @metadataManager, @graphics, @preamble) -> - @suggestionManager = new CommandManager() + constructor: (@$scope, @editor, @element, @labelsManager, @graphics, @preamble) -> + @suggestionManager = new CommandManager(@labelsManager) @monkeyPatchAutocomplete() @@ -65,7 +65,7 @@ define [ } callback null, result - metadataManager = @metadataManager + labelsManager = @labelsManager LabelsCompleter = getCompletions: (editor, session, pos, prefix, callback) -> context = Helpers.getContext(editor, pos) @@ -76,13 +76,14 @@ define [ commandName = refMatch[1] currentArg = refMatch[2] result = [] - result.push { - caption: "\\#{commandName}{}", - snippet: "\\#{commandName}{}", - meta: "cross-reference", - score: 60 - } - for label in metadataManager.getAllLabels() + if commandName != 'ref' # ref is in top 100 commands + result.push { + caption: "\\#{commandName}{}", + snippet: "\\#{commandName}{}", + meta: "cross-reference", + score: 60 + } + for label in labelsManager.getAllLabels() result.push { caption: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", value: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", 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 fd6cdf7e64..7939a9be84 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 @@ -77,6 +77,11 @@ define [], () -> special ) + packageCommandMappings = { + amsmath: ['holyshititworks', 'mathematics'] + natbib: ['somebibliographystuff'] + } + class Parser constructor: (@doc, @prefix) -> @@ -166,7 +171,20 @@ define [], () -> return false class CommandManager + constructor: (@labelsManager) -> + getCompletions: (editor, session, pos, prefix, callback) -> + packages = @labelsManager.getAllPackages() + packageCommands = [] + for pkg in packages + if packageCommandMappings[pkg]? + for cmd in packageCommandMappings[pkg] + packageCommands.push { + caption: "\\#{cmd}" + snippet: "\\#{cmd}" + meta: "cmd" + } + doc = session.getValue() parser = new Parser(doc, prefix) commands = parser.parse() @@ -191,9 +209,9 @@ define [], () -> meta: "cmd" score: score } - completions = completions.concat staticCommands + completions = completions.concat staticCommands, packageCommands - callback(null, completions) + callback null, completions loadCommandsFromDoc: (doc) -> parser = new Parser(doc) diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee index a5d2c10625..4c0b320959 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee @@ -23,9 +23,22 @@ define [ range = new Range(end.row, 0, end.row, end.column) lineUpToCursor = @editor.getSession().getTextRange(range) commandFragment = getLastCommandFragment(lineUpToCursor) - linesContainLabel = _.any(change.lines, (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/)) - lastCommandFragmentIsLabel = commandFragment?.slice(0,7) == '\\label{' - if linesContainLabel or lastCommandFragmentIsLabel + + linesContainPackage = _.any( + change.lines, + (line) -> line.match(/\\usepackage(?:\[.*?])?\s*{.*?}/) + ) + linesContainLabel = _.any( + change.lines, + (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/) + ) + linesContainMeta = linesContainPackage or linesContainLabel + + lastCommandFragmentIsLabel = commandFragment?.startsWith '\\label{' + lastCommandFragmentIsPackage = commandFragment?.startsWith '\\usepackage' + lastCommandFragmentIsMeta = lastCommandFragmentIsPackage or lastCommandFragmentIsLabel + + if linesContainMeta or lastCommandFragmentIsMeta @scheduleLoadCurrentDocLabelsFromServer() @editor.on "changeSession", (e) => @@ -34,10 +47,10 @@ define [ loadCurrentDocLabelsFromServer: () -> currentDocId = @$scope.docId - @Labels.loadDocLabelsFromServer(currentDocId) + @Labels.loadDocLabelsFromServer currentDocId loadDocLabelsFromServer: (docId) -> - @Labels.loadDocLabelsFromServer(docId) + @Labels.loadDocLabelsFromServer docId scheduleLoadCurrentDocLabelsFromServer: () -> # De-bounce loading labels with a timeout @@ -48,7 +61,7 @@ define [ delete @debouncer[currentDocId] @debouncer[currentDocId] = setTimeout( () => - @loadDocLabelsFromServer(currentDocId) + @loadDocLabelsFromServer currentDocId delete @debouncer[currentDocId] , 1000 , this @@ -56,3 +69,6 @@ define [ getAllLabels: () -> @Labels.getAllLabels() + + getAllPackages: () -> + @Labels.getAllPackages() diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee deleted file mode 100644 index 8f104f3ace..0000000000 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee +++ /dev/null @@ -1,77 +0,0 @@ -define [ - "ace/ace" -], () -> - Range = ace.require("ace/range").Range - - getLastCommandFragment = (lineUpToCursor) -> - if m = lineUpToCursor.match(/(\\[^\\]+)$/) - return m[1] - else - return null - - class MetadataManager - constructor: (@$scope, @editor, @element, @Metadata) -> - @debouncer = {} # DocId => Timeout - - onChange = (change) => - if change.remote - return - if change.action not in ['remove', 'insert'] - return - cursorPosition = @editor.getCursorPosition() - end = change.end - range = new Range(end.row, 0, end.row, end.column) - lineUpToCursor = @editor.getSession().getTextRange(range) - commandFragment = getLastCommandFragment(lineUpToCursor) - - linesContainLabel = _.any( - change.lines, - (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/) - ) - linesContainPackage = _.any( - change.lines, - (line) -> line.match(/\\usepackage(?:\[.*?])?\s*{.*?}/) - ) - linesContainMeta = linesContainPackage or linesContainLabel - - lastCommandFragmentIsLabel = commandFragment?.startsWith '\\label{' - lastCommandFragmentIsPackage = commandFragment?.startsWith '\\usepackage' - lastCommandFragmentIsMeta = lastCommandFragmentIsPackage or lastCommandFragmentIsLabel - - if linesContainMeta or lastCommandFragmentIsMeta - @scheduleLoadCurrentDocMetadataFromServer() - - @editor.on 'changeSession', (e) => - e.oldSession.off 'change', onChange - e.session.on 'change', onChange - - loadCurrentDocMetadataFromServer: () -> - currentDocId = @$scope.docId - @Metadata.loadDocMetadataFromServer currentDocId - - loadDocMetadataFromServer: (docId) -> - @Metadata.loadDocMetadataFromServer docId - - scheduleLoadCurrentDocMetadataFromServer: () -> - # De-bounce loading labels with a timeout - currentDocId = @$scope.docId - existingTimeout = @debouncer[currentDocId] - if existingTimeout? - clearTimeout(existingTimeout) - delete @debouncer[currentDocId] - @debouncer[currentDocId] = setTimeout( - () => - @loadDocMetadataFromServer(currentDocId) - delete @debouncer[currentDocId] - , 1000 - , this - ) - - getAllLabels: () -> - @Metadata.getAllLabels() - - getAllPackages: () -> - @Metadata.getAllPackages() - - getAllMetadata: () -> - @Metadata.getAllMetadata() diff --git a/services/web/public/coffee/ide/labels/LabelsManager.coffee b/services/web/public/coffee/ide/labels/LabelsManager.coffee index 549a1aaa02..354f2f8e94 100644 --- a/services/web/public/coffee/ide/labels/LabelsManager.coffee +++ b/services/web/public/coffee/ide/labels/LabelsManager.coffee @@ -1,12 +1,11 @@ -define [ -], () -> +define [], () -> class LabelsManager constructor: (@ide, @$scope, @labels) -> - @ide.socket.on 'broadcastDocLabels', (data) => - @labels.onBroadcastDocLabels(data) + @ide.socket.on 'broadcastDocMeta', (data) => + @labels.onBroadcastDocLabels data @$scope.$on 'entity:deleted', @labels.onEntityDeleted @$scope.$on 'file:upload:complete', @labels.fileUploadComplete diff --git a/services/web/public/coffee/ide/labels/services/labels.coffee b/services/web/public/coffee/ide/labels/services/labels.coffee index 313d48175f..185f276bb7 100644 --- a/services/web/public/coffee/ide/labels/services/labels.coffee +++ b/services/web/public/coffee/ide/labels/services/labels.coffee @@ -11,8 +11,8 @@ define [ } labels.onBroadcastDocLabels = (data) -> - if data.docId and data.labels - state.documents[data.docId] = data.labels + if data.docId? and data.meta? + state.documents[data.docId] = data.meta labels.onEntityDeleted = (e, entity) -> if entity.type == 'doc' @@ -20,19 +20,22 @@ define [ labels.onFileUploadComplete = (e, upload) -> if upload.entity_type == 'doc' - labels.loadDocLabelsFromServer(upload.entity_id) + labels.loadDocLabelsFromServer upload.entity_id labels.getAllLabels = () -> - _.flatten(labels for docId, labels of state.documents) + _.flatten(meta.labels for docId, meta of state.documents) + + labels.getAllPackages = () -> + _.flatten(meta.packages for docId, meta of state.documents) labels.loadProjectLabelsFromServer = () -> $http .get("/project/#{window.project_id}/labels") .then (response) -> { data } = response - if data.projectLabels - for docId, docLabels of data.projectLabels - state.documents[docId] = docLabels + if data.projectMeta + for docId, docMeta of data.projectMeta + state.documents[docId] = docMeta.labels labels.loadDocLabelsFromServer = (docId) -> $http diff --git a/services/web/public/coffee/ide/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/metadata/MetadataManager.coffee deleted file mode 100644 index fa908e7dd8..0000000000 --- a/services/web/public/coffee/ide/metadata/MetadataManager.coffee +++ /dev/null @@ -1,13 +0,0 @@ -define [], () -> - - class MetadataManager - - constructor: (@ide, @$scope, @metadata) -> - - @ide.socket.on 'broadcastDocMetadata', (data) => - @metadata.onBroadcastDocMetadata(data) - @$scope.$on 'entity:deleted', @metadata.onEntityDeleted - @$scope.$on 'file:upload:complete', @metadata.fileUploadComplete - - loadProjectMetadataFromServer: () -> - @metadata.loadProjectMetadataFromServer() diff --git a/services/web/public/coffee/ide/metadata/services/metadata.coffee b/services/web/public/coffee/ide/metadata/services/metadata.coffee deleted file mode 100644 index e6ad3aec43..0000000000 --- a/services/web/public/coffee/ide/metadata/services/metadata.coffee +++ /dev/null @@ -1,46 +0,0 @@ -define [ - "base" -], (App) -> - - App.factory 'metadata', ($http, ide) -> - - state = {documents: {}} - - metadata = { - state: state - } - - metadata.onBroadcastDocMetadata = (data) -> - if data.docId and data.metadata - state.documents[data.docId] = data.metadata - - metadata.onEntityDeleted = (e, entity) -> - if entity.type == 'doc' - delete state.documents[entity.id] - - metadata.onFileUploadComplete = (e, upload) -> - if upload.entity_type == 'doc' - metadata.loadDocMetadataFromServer(upload.entity_id) - - metadata.getAllMetadata = () -> - labels = _.flatten(meta['labels'] for docId, meta of state.documents) - packages = _.flatten(meta['packages'] for docId, meta of state.documents) - {labels: labels, packages: packages} - - metadata.loadProjectMetadataFromServer = () -> - $http - .get("/project/#{window.project_id}/metadata") - .then (response) -> - { data } = response - if data.projectMetadata - for docId, docMetadata of data.projectMetadata - state.documents[docId] = docMetadata - - metadata.loadDocMetadataFromServer = (docId) -> - $http - .post( - "/project/#{window.project_id}/doc/#{docId}/metadata", - {_csrf: window.csrfToken} - ) - - return metadata From f113ba63429fde9635dafa9ae1e60d19be548762 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Thu, 12 Oct 2017 15:33:14 +0100 Subject: [PATCH 04/10] basic package aware autocomplete --- .../Features/Labels/LabelsController.coffee | 28 ---------------- .../Features/Metadata/MetaController.coffee | 29 +++++++++++++++++ .../MetaHandler.coffee} | 15 +++++---- services/web/app/coffee/router.coffee | 7 ++-- services/web/public/coffee/ide.coffee | 18 +++++------ .../ide/editor/directives/aceEditor.coffee | 13 ++++---- .../auto-complete/AutoCompleteManager.coffee | 17 +++++----- .../auto-complete/CommandManager.coffee | 19 ++++++----- .../auto-complete/package_definitions.coffee | 1 + .../MetadataManager.coffee} | 32 +++++++++++-------- .../coffee/ide/labels/LabelsManager.coffee | 13 -------- .../ide/metadata/MetadataManager.coffee | 13 ++++++++ .../services/metadata.coffee} | 28 ++++++++-------- 13 files changed, 120 insertions(+), 113 deletions(-) delete mode 100644 services/web/app/coffee/Features/Labels/LabelsController.coffee create mode 100644 services/web/app/coffee/Features/Metadata/MetaController.coffee rename services/web/app/coffee/Features/{Labels/LabelsHandler.coffee => Metadata/MetaHandler.coffee} (78%) create mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee rename services/web/public/coffee/ide/editor/directives/aceEditor/{labels/LabelsManager.coffee => metadata/MetadataManager.coffee} (65%) delete mode 100644 services/web/public/coffee/ide/labels/LabelsManager.coffee create mode 100644 services/web/public/coffee/ide/metadata/MetadataManager.coffee rename services/web/public/coffee/ide/{labels/services/labels.coffee => metadata/services/metadata.coffee} (50%) diff --git a/services/web/app/coffee/Features/Labels/LabelsController.coffee b/services/web/app/coffee/Features/Labels/LabelsController.coffee deleted file mode 100644 index b8c245f7b7..0000000000 --- a/services/web/app/coffee/Features/Labels/LabelsController.coffee +++ /dev/null @@ -1,28 +0,0 @@ -EditorRealTimeController = require "../Editor/EditorRealTimeController" -LabelsHandler = require './LabelsHandler' -logger = require 'logger-sharelatex' - - -module.exports = LabelsController = - - getAllLabels: (req, res, next) -> - project_id = req.params.project_id - logger.log {project_id}, "getting all labels for project" - LabelsHandler.getAllMetaForProject project_id, (err, projectMeta) -> - if err? - logger.err {project_id, err}, "[LabelsController] error getting all labels from project" - return next(err) - res.json {projectId: project_id, projectMeta: projectMeta} - - broadcastLabelsForDoc: (req, res, next) -> - project_id = req.params.project_id - doc_id = req.params.doc_id - logger.log {project_id, doc_id}, "getting labels for doc" - LabelsHandler.getMetaForDoc project_id, doc_id, (err, docMeta) -> - if err? - logger.err {project_id, doc_id, err}, "[LabelsController] error getting labels from doc" - return next(err) - EditorRealTimeController.emitToRoom project_id, 'broadcastDocMeta', { - docId: doc_id, meta: docMeta - } - res.sendStatus(200) diff --git a/services/web/app/coffee/Features/Metadata/MetaController.coffee b/services/web/app/coffee/Features/Metadata/MetaController.coffee new file mode 100644 index 0000000000..f8447e753c --- /dev/null +++ b/services/web/app/coffee/Features/Metadata/MetaController.coffee @@ -0,0 +1,29 @@ +EditorRealTimeController = require "../Editor/EditorRealTimeController" +MetaHandler = require './MetaHandler' +logger = require 'logger-sharelatex' + + +module.exports = MetaController = + + getMetadata: (req, res, next) -> + project_id = req.params.project_id + logger.log {project_id}, "getting all labels for project" + MetaHandler.getAllMetaForProject project_id, (err, projectMeta) -> + if err? + logger.err {project_id, err}, "[MetaController] error getting all labels from project" + return next err + res.json {projectId: project_id, projectMeta: projectMeta} + + broadcastMetadataForDoc: (req, res, next) -> + project_id = req.params.project_id + doc_id = req.params.doc_id + logger.log {project_id, doc_id}, "getting labels for doc" + MetaHandler.getMetaForDoc project_id, doc_id, (err, docMeta) -> + if err? + logger.err {project_id, doc_id, err}, "[MetaController] error getting labels from doc" + return next err + EditorRealTimeController.emitToRoom project_id, 'broadcastDocMeta', { + docId: doc_id, meta: docMeta + } + res.sendStatus 200 +MetaController diff --git a/services/web/app/coffee/Features/Labels/LabelsHandler.coffee b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee similarity index 78% rename from services/web/app/coffee/Features/Labels/LabelsHandler.coffee rename to services/web/app/coffee/Features/Metadata/MetaHandler.coffee index b074f461a8..8220a50008 100644 --- a/services/web/app/coffee/Features/Labels/LabelsHandler.coffee +++ b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee @@ -2,7 +2,7 @@ ProjectEntityHandler = require "../Project/ProjectEntityHandler" DocumentUpdaterHandler = require('../DocumentUpdater/DocumentUpdaterHandler') -module.exports = LabelsHandler = +module.exports = MetaHandler = labelCaptureRegex: () -> /\\label\{([^\}\n\\]{0,80})\}/g @@ -17,7 +17,7 @@ module.exports = LabelsHandler = ProjectEntityHandler.getAllDocs projectId, (err, docs) -> if err? return callback err - projectMeta = LabelsHandler.extractMetaFromProjectDocs docs + projectMeta = MetaHandler.extractMetaFromProjectDocs docs callback null, projectMeta getMetaForDoc: (projectId, docId, callback=(err, docMeta)->) -> @@ -27,13 +27,13 @@ module.exports = LabelsHandler = ProjectEntityHandler.getDoc projectId, docId, (err, lines) -> if err? return callback err - docMeta = LabelsHandler.extractMetaFromDoc lines + docMeta = MetaHandler.extractMetaFromDoc lines callback null, docMeta extractMetaFromDoc: (lines) -> docMeta = {labels: [], packages: []} - label_re = LabelsHandler.labelCaptureRegex() - package_re = LabelsHandler.packageCaptureRegex() + label_re = MetaHandler.labelCaptureRegex() + package_re = MetaHandler.packageCaptureRegex() for line in lines while labelMatch = label_re.exec line if labelMatch[1] @@ -41,11 +41,12 @@ module.exports = LabelsHandler = while packageMatch = package_re.exec line if packageMatch[2] for pkg in packageMatch[2].split ',' - docMeta.packages.push pkg.trim() + if pkg.trim() + docMeta.packages.push pkg.trim() return docMeta extractMetaFromProjectDocs: (projectDocs) -> projectMeta = {} for _path, doc of projectDocs - projectMeta[doc._id] = LabelsHandler.extractMetaFromDoc doc.lines + projectMeta[doc._id] = MetaHandler.extractMetaFromDoc doc.lines return projectMeta diff --git a/services/web/app/coffee/router.coffee b/services/web/app/coffee/router.coffee index a1dc85dafe..bd8b8ca00e 100644 --- a/services/web/app/coffee/router.coffee +++ b/services/web/app/coffee/router.coffee @@ -43,8 +43,7 @@ SudoModeController = require('./Features/SudoMode/SudoModeController') SudoModeMiddlewear = require('./Features/SudoMode/SudoModeMiddlewear') AnalyticsRouter = require('./Features/Analytics/AnalyticsRouter') AnnouncementsController = require("./Features/Announcements/AnnouncementsController") -LabelsController = require('./Features/Labels/LabelsController') -# MetadataController = require('./Features/ProjectMetadata/MetadataController') +MetaController = require('./Features/Metadata/MetaController') logger = require("logger-sharelatex") _ = require("underscore") @@ -202,8 +201,8 @@ module.exports = class Router webRouter.get '/Project/:Project_id/download/zip', AuthorizationMiddlewear.ensureUserCanReadProject, ProjectDownloadsController.downloadProject webRouter.get '/project/download/zip', AuthorizationMiddlewear.ensureUserCanReadMultipleProjects, ProjectDownloadsController.downloadMultipleProjects - webRouter.get '/project/:project_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.getAllLabels - webRouter.post '/project/:project_id/doc/:doc_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.broadcastLabelsForDoc + webRouter.get '/project/:project_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetaController.getMetadata + webRouter.post '/project/:project_id/doc/:doc_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetaController.broadcastMetadataForDoc webRouter.get '/tag', AuthenticationController.requireLogin(), TagsController.getAllTags webRouter.post '/tag', AuthenticationController.requireLogin(), TagsController.createTag diff --git a/services/web/public/coffee/ide.coffee b/services/web/public/coffee/ide.coffee index 4aaaecc53b..a77e6e7578 100644 --- a/services/web/public/coffee/ide.coffee +++ b/services/web/public/coffee/ide.coffee @@ -9,7 +9,7 @@ define [ "ide/pdf/PdfManager" "ide/binary-files/BinaryFilesManager" "ide/references/ReferencesManager" - "ide/labels/LabelsManager" + "ide/metadata/MetadataManager" "ide/review-panel/ReviewPanelManager" "ide/SafariScrollPatcher" "ide/FeatureOnboardingController", @@ -47,12 +47,12 @@ define [ PdfManager BinaryFilesManager ReferencesManager - LabelsManager + MetadataManager ReviewPanelManager SafariScrollPatcher ) -> - App.controller "IdeController", ($scope, $timeout, ide, localStorage, sixpack, event_tracking, labels) -> + App.controller "IdeController", ($scope, $timeout, ide, localStorage, sixpack, event_tracking, metadata) -> # Don't freak out if we're already in an apply callback $scope.$originalApply = $scope.$apply $scope.$apply = (fn = () ->) -> @@ -72,10 +72,10 @@ define [ view: "editor" chatOpen: false pdfLayout: 'sideBySide' - pdfHidden: false, - pdfWidth: 0, - reviewPanelOpen: localStorage("ui.reviewPanelOpen.#{window.project_id}"), - miniReviewPanelVisible: false, + pdfHidden: false + pdfWidth: 0 + reviewPanelOpen: localStorage("ui.reviewPanelOpen.#{window.project_id}") + miniReviewPanelVisible: false } $scope.onboarding = { autoCompile: if window.user.betaProgram and window.showAutoCompileOnboarding then 'unseen' else 'dismissed' @@ -140,7 +140,7 @@ define [ ide.pdfManager = new PdfManager(ide, $scope) ide.permissionsManager = new PermissionsManager(ide, $scope) ide.binaryFilesManager = new BinaryFilesManager(ide, $scope) - ide.labelsManager = new LabelsManager(ide, $scope, labels) + ide.metadataManager = new MetadataManager(ide, $scope, metadata) inited = false $scope.$on "project:joined", () -> @@ -155,7 +155,7 @@ define [ $timeout( () -> if $scope.permissions.write - ide.labelsManager.loadProjectLabelsFromServer() + ide.metadataManager.loadProjectMetaFromServer() _labelsInitialLoadDone = true , 200 ) diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index 14f0a66b1b..3dbe6371c3 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -9,11 +9,11 @@ define [ "ide/editor/directives/aceEditor/highlights/HighlightsManager" "ide/editor/directives/aceEditor/cursor-position/CursorPositionManager" "ide/editor/directives/aceEditor/track-changes/TrackChangesManager" - "ide/editor/directives/aceEditor/labels/LabelsManager" - "ide/labels/services/labels" + "ide/editor/directives/aceEditor/metadata/MetadataManager" + "ide/metadata/services/metadata" "ide/graphics/services/graphics" "ide/preamble/services/preamble" -], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, LabelsManager) -> +], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, MetadataManager) -> EditSession = ace.require('ace/edit_session').EditSession ModeList = ace.require('ace/ext/modelist') @@ -35,9 +35,8 @@ define [ url = ace.config._moduleUrl(args...) + "?fingerprint=#{window.aceFingerprint}" return url - # console.log 'making it to right before aceEditor' - App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, labels, graphics, preamble) -> + App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, metadata, graphics, preamble) -> monkeyPatchSearch($rootScope, $compile) return { @@ -104,8 +103,8 @@ define [ highlightsManager = new HighlightsManager(scope, editor, element) cursorPositionManager = new CursorPositionManager(scope, editor, element, localStorage) trackChangesManager = new TrackChangesManager(scope, editor, element) - labelsManager = new LabelsManager(scope, editor, element, labels) - autoCompleteManager = new AutoCompleteManager(scope, editor, element, labelsManager, graphics, preamble) + metadataManager = new MetadataManager(scope, editor, element, metadata) + autoCompleteManager = new AutoCompleteManager(scope, editor, element, metadataManager, graphics, preamble) # Prevert Ctrl|Cmd-S from triggering save dialog diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index d2bbbf31e6..f74222c831 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -9,8 +9,7 @@ define [ aceSnippetManager = ace.require('ace/snippets').snippetManager class AutoCompleteManager - constructor: (@$scope, @editor, @element, @labelsManager, @graphics, @preamble) -> - @suggestionManager = new CommandManager(@labelsManager) + constructor: (@$scope, @editor, @element, @metadataManager, @graphics, @preamble) -> @monkeyPatchAutocomplete() @@ -34,7 +33,7 @@ define [ enableLiveAutocompletion: false }) - # metadataManager = @metadataManager + commandCompleter = new CommandManager(@metadataManager) SnippetCompleter = new EnvironmentManager() @@ -65,7 +64,7 @@ define [ } callback null, result - labelsManager = @labelsManager + metadataManager = @metadataManager LabelsCompleter = getCompletions: (editor, session, pos, prefix, callback) -> context = Helpers.getContext(editor, pos) @@ -83,7 +82,7 @@ define [ meta: "cross-reference", score: 60 } - for label in labelsManager.getAllLabels() + for label in metadataManager.getAllLabels() result.push { caption: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", value: "\\#{commandName}{#{label}#{if needsClosingBrace then '}' else ''}", @@ -129,10 +128,10 @@ define [ callback null, result @editor.completers = [ - @suggestionManager, - SnippetCompleter, - ReferencesCompleter, - LabelsCompleter, + commandCompleter + SnippetCompleter + ReferencesCompleter + LabelsCompleter GraphicsCompleter ] 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 7939a9be84..d30b56ca58 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,4 +1,6 @@ -define [], () -> +define [ + "./package_definitions" + ], (packageCommandMappings) -> noArgumentCommands = [ 'item', 'hline', 'lipsum', 'centering', 'noindent', 'textwidth', 'draw', 'maketitle', 'newpage', 'verb', 'bibliography', 'hfill', 'par', @@ -77,10 +79,10 @@ define [], () -> special ) - packageCommandMappings = { - amsmath: ['holyshititworks', 'mathematics'] - natbib: ['somebibliographystuff'] - } + # packageCommandMappings = { + # amsmath: ['holyshititworks', 'mathematics'] + # natbib: ['somebibliographystuff'] + # } class Parser constructor: (@doc, @prefix) -> @@ -171,10 +173,10 @@ define [], () -> return false class CommandManager - constructor: (@labelsManager) -> + constructor: (@metadataManager) -> getCompletions: (editor, session, pos, prefix, callback) -> - packages = @labelsManager.getAllPackages() + packages = @metadataManager.getAllPackages() packageCommands = [] for pkg in packages if packageCommandMappings[pkg]? @@ -182,7 +184,8 @@ define [], () -> packageCommands.push { caption: "\\#{cmd}" snippet: "\\#{cmd}" - meta: "cmd" + meta: "#{pkg}-cmd" + score: 60 } doc = session.getValue() 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 new file mode 100644 index 0000000000..e81bedfc6c --- /dev/null +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definitions.coffee @@ -0,0 +1 @@ +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/labels/LabelsManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee similarity index 65% rename from services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee rename to services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee index 4c0b320959..e7b7d76005 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee @@ -9,8 +9,8 @@ define [ else return null - class LabelsManager - constructor: (@$scope, @editor, @element, @Labels) -> + class MetadataManager + constructor: (@$scope, @editor, @element, @Metadata) -> @debouncer = {} # DocId => Timeout onChange = (change) => @@ -21,8 +21,12 @@ define [ cursorPosition = @editor.getCursorPosition() end = change.end range = new Range(end.row, 0, end.row, end.column) - lineUpToCursor = @editor.getSession().getTextRange(range) - commandFragment = getLastCommandFragment(lineUpToCursor) + lineUpToCursor = @editor.getSession().getTextRange range + if lineUpToCursor.trim() == '%' or lineUpToCursor.startsWith '\\' + # fix in case change is just (un)comment out a package + range = new Range end.row, 0, end.row, end.column + 80 + lineUpToCursor = @editor.getSession().getTextRange range + commandFragment = getLastCommandFragment lineUpToCursor linesContainPackage = _.any( change.lines, @@ -39,20 +43,20 @@ define [ lastCommandFragmentIsMeta = lastCommandFragmentIsPackage or lastCommandFragmentIsLabel if linesContainMeta or lastCommandFragmentIsMeta - @scheduleLoadCurrentDocLabelsFromServer() + @scheduleLoadCurrentDocMetaFromServer() @editor.on "changeSession", (e) => e.oldSession.off "change", onChange e.session.on "change", onChange - loadCurrentDocLabelsFromServer: () -> - currentDocId = @$scope.docId - @Labels.loadDocLabelsFromServer currentDocId + # loadCurrentDocLabelsFromServer: () -> + # currentDocId = @$scope.docId + # @Metadata.loadDocMetaFromServer currentDocId - loadDocLabelsFromServer: (docId) -> - @Labels.loadDocLabelsFromServer docId + loadDocMetaFromServer: (docId) -> + @Metadata.loadDocMetaFromServer docId - scheduleLoadCurrentDocLabelsFromServer: () -> + scheduleLoadCurrentDocMetaFromServer: () -> # De-bounce loading labels with a timeout currentDocId = @$scope.docId existingTimeout = @debouncer[currentDocId] @@ -61,14 +65,14 @@ define [ delete @debouncer[currentDocId] @debouncer[currentDocId] = setTimeout( () => - @loadDocLabelsFromServer currentDocId + @loadDocMetaFromServer currentDocId delete @debouncer[currentDocId] , 1000 , this ) getAllLabels: () -> - @Labels.getAllLabels() + @Metadata.getAllLabels() getAllPackages: () -> - @Labels.getAllPackages() + @Metadata.getAllPackages() diff --git a/services/web/public/coffee/ide/labels/LabelsManager.coffee b/services/web/public/coffee/ide/labels/LabelsManager.coffee deleted file mode 100644 index 354f2f8e94..0000000000 --- a/services/web/public/coffee/ide/labels/LabelsManager.coffee +++ /dev/null @@ -1,13 +0,0 @@ -define [], () -> - - class LabelsManager - - constructor: (@ide, @$scope, @labels) -> - - @ide.socket.on 'broadcastDocMeta', (data) => - @labels.onBroadcastDocLabels data - @$scope.$on 'entity:deleted', @labels.onEntityDeleted - @$scope.$on 'file:upload:complete', @labels.fileUploadComplete - - loadProjectLabelsFromServer: () -> - @labels.loadProjectLabelsFromServer() diff --git a/services/web/public/coffee/ide/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/metadata/MetadataManager.coffee new file mode 100644 index 0000000000..d1f5866c9a --- /dev/null +++ b/services/web/public/coffee/ide/metadata/MetadataManager.coffee @@ -0,0 +1,13 @@ +define [], () -> + + class MetadataManager + + constructor: (@ide, @$scope, @metadata) -> + + @ide.socket.on 'broadcastDocMeta', (data) => + @metadata.onBroadcastDocMeta data + @$scope.$on 'entity:deleted', @metadata.onEntityDeleted + @$scope.$on 'file:upload:complete', @metadata.fileUploadComplete + + loadProjectMetaFromServer: () -> + @metadata.loadProjectMetaFromServer() diff --git a/services/web/public/coffee/ide/labels/services/labels.coffee b/services/web/public/coffee/ide/metadata/services/metadata.coffee similarity index 50% rename from services/web/public/coffee/ide/labels/services/labels.coffee rename to services/web/public/coffee/ide/metadata/services/metadata.coffee index 185f276bb7..84059adbe2 100644 --- a/services/web/public/coffee/ide/labels/services/labels.coffee +++ b/services/web/public/coffee/ide/metadata/services/metadata.coffee @@ -2,46 +2,46 @@ define [ "base" ], (App) -> - App.factory 'labels', ($http, ide) -> + App.factory 'metadata', ($http, ide) -> state = {documents: {}} - labels = { + metadata = { state: state } - labels.onBroadcastDocLabels = (data) -> + metadata.onBroadcastDocMeta = (data) -> if data.docId? and data.meta? state.documents[data.docId] = data.meta - labels.onEntityDeleted = (e, entity) -> + metadata.onEntityDeleted = (e, entity) -> if entity.type == 'doc' delete state.documents[entity.id] - labels.onFileUploadComplete = (e, upload) -> + metadata.onFileUploadComplete = (e, upload) -> if upload.entity_type == 'doc' - labels.loadDocLabelsFromServer upload.entity_id + metadata.loadDocMetaFromServer upload.entity_id - labels.getAllLabels = () -> + metadata.getAllLabels = () -> _.flatten(meta.labels for docId, meta of state.documents) - labels.getAllPackages = () -> + metadata.getAllPackages = () -> _.flatten(meta.packages for docId, meta of state.documents) - labels.loadProjectLabelsFromServer = () -> + metadata.loadProjectMetaFromServer = () -> $http - .get("/project/#{window.project_id}/labels") + .get("/project/#{window.project_id}/metadata") .then (response) -> { data } = response if data.projectMeta for docId, docMeta of data.projectMeta - state.documents[docId] = docMeta.labels + state.documents[docId] = docMeta - labels.loadDocLabelsFromServer = (docId) -> + metadata.loadDocMetaFromServer = (docId) -> $http .post( - "/project/#{window.project_id}/doc/#{docId}/labels", + "/project/#{window.project_id}/doc/#{docId}/metadata", {_csrf: window.csrfToken} ) - return labels + return metadata From 42412b1bb46ba836bd2704abaf115edeee39e1a2 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Thu, 12 Oct 2017 17:28:11 +0100 Subject: [PATCH 05/10] modified labels tests to pass with new metadata --- .../Features/Metadata/MetaHandler.coffee | 2 +- .../Labels/LabelsControllerTests.coffee | 119 ------------- .../coffee/Labels/LabelsHandlerTests.coffee | 134 --------------- .../Metadata/MetaControllerTests.coffee | 119 +++++++++++++ .../coffee/Metadata/MetaHandlerTests.coffee | 161 ++++++++++++++++++ 5 files changed, 281 insertions(+), 254 deletions(-) delete mode 100644 services/web/test/UnitTests/coffee/Labels/LabelsControllerTests.coffee delete mode 100644 services/web/test/UnitTests/coffee/Labels/LabelsHandlerTests.coffee create mode 100644 services/web/test/UnitTests/coffee/Metadata/MetaControllerTests.coffee create mode 100644 services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee diff --git a/services/web/app/coffee/Features/Metadata/MetaHandler.coffee b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee index 8220a50008..2401949b1a 100644 --- a/services/web/app/coffee/Features/Metadata/MetaHandler.coffee +++ b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee @@ -1,5 +1,5 @@ ProjectEntityHandler = require "../Project/ProjectEntityHandler" -DocumentUpdaterHandler = require('../DocumentUpdater/DocumentUpdaterHandler') +DocumentUpdaterHandler = require '../DocumentUpdater/DocumentUpdaterHandler' module.exports = MetaHandler = diff --git a/services/web/test/UnitTests/coffee/Labels/LabelsControllerTests.coffee b/services/web/test/UnitTests/coffee/Labels/LabelsControllerTests.coffee deleted file mode 100644 index 7e8a7ba91e..0000000000 --- a/services/web/test/UnitTests/coffee/Labels/LabelsControllerTests.coffee +++ /dev/null @@ -1,119 +0,0 @@ -chai = require('chai') -chai.should() -expect = chai.expect -sinon = require("sinon") -modulePath = "../../../../app/js/Features/Labels/LabelsController" -SandboxedModule = require('sandboxed-module') - - -describe 'LabelsController', -> - beforeEach -> - @projectId = 'somekindofid' - @EditorRealTimeController = { - emitToRoom: sinon.stub() - } - @LabelsHandler = { - getAllLabelsForProject: sinon.stub() - getLabelsForDoc: sinon.stub() - } - @LabelsController = SandboxedModule.require modulePath, requires: - 'logger-sharelatex': {log: sinon.stub(), err: sinon.stub()} - '../Editor/EditorRealTimeController': @EditorRealTimeController - './LabelsHandler': @LabelsHandler - - describe 'getAllLabels', -> - beforeEach -> - @fakeLabels = {'somedoc': ['a_label']} - @LabelsHandler.getAllLabelsForProject = sinon.stub().callsArgWith(1, null, @fakeLabels) - @req = {params: {project_id: @projectId}} - @res = {json: sinon.stub()} - @next = sinon.stub() - - it 'should call LabelsHandler.getAllLabelsForProject', () -> - @LabelsController.getAllLabels(@req, @res, @next) - @LabelsHandler.getAllLabelsForProject.callCount.should.equal 1 - @LabelsHandler.getAllLabelsForProject.calledWith(@projectId).should.equal true - - it 'should call not call next with an error', () -> - @LabelsController.getAllLabels(@req, @res, @next) - @next.callCount.should.equal 0 - - it 'should send a json response', () -> - @LabelsController.getAllLabels(@req, @res, @next) - @res.json.callCount.should.equal 1 - expect(@res.json.lastCall.args[0]).to.have.all.keys ['projectId', 'projectLabels'] - - describe 'when LabelsHandler.getAllLabelsForProject produces an error', -> - beforeEach -> - @LabelsHandler.getAllLabelsForProject = sinon.stub().callsArgWith(1, new Error('woops')) - @req = {params: {project_id: @projectId}} - @res = {json: sinon.stub()} - @next = sinon.stub() - - it 'should call LabelsHandler.getAllLabelsForProject', () -> - @LabelsController.getAllLabels(@req, @res, @next) - @LabelsHandler.getAllLabelsForProject.callCount.should.equal 1 - @LabelsHandler.getAllLabelsForProject.calledWith(@projectId).should.equal true - - it 'should call next with an error', -> - @LabelsController.getAllLabels(@req, @res, @next) - @next.callCount.should.equal 1 - expect(@next.lastCall.args[0]).to.be.instanceof Error - - it 'should not send a json response', -> - @LabelsController.getAllLabels(@req, @res, @next) - @res.json.callCount.should.equal 0 - - describe 'broadcastLabelsForDoc', -> - beforeEach -> - @LabelsHandler.getLabelsForDoc = sinon.stub().callsArgWith(2, null, @fakeLabels) - @EditorRealTimeController.emitToRoom = sinon.stub() - @docId = 'somedoc' - @req = {params: {project_id: @projectId, doc_id: @docId}} - @res = {sendStatus: sinon.stub()} - @next = sinon.stub() - - it 'should call LabelsHandler.getLabelsForDoc', () -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @LabelsHandler.getLabelsForDoc.callCount.should.equal 1 - @LabelsHandler.getLabelsForDoc.calledWith(@projectId).should.equal true - - it 'should call not call next with an error', () -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @next.callCount.should.equal 0 - - it 'should send a success response', () -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @res.sendStatus.callCount.should.equal 1 - @res.sendStatus.calledWith(200).should.equal true - - it 'should emit a message to room', () -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @EditorRealTimeController.emitToRoom.callCount.should.equal 1 - lastCall = @EditorRealTimeController.emitToRoom.lastCall - expect(lastCall.args[0]).to.equal @projectId - expect(lastCall.args[1]).to.equal 'broadcastDocLabels' - expect(lastCall.args[2]).to.have.all.keys ['docId', 'labels'] - - describe 'when LabelsHandler.getLabelsForDoc produces an error', -> - beforeEach -> - @LabelsHandler.getLabelsForDoc = sinon.stub().callsArgWith(2, new Error('woops')) - @EditorRealTimeController.emitToRoom = sinon.stub() - @docId = 'somedoc' - @req = {params: {project_id: @projectId, doc_id: @docId}} - @res = {json: sinon.stub()} - @next = sinon.stub() - - it 'should call LabelsHandler.getLabelsForDoc', () -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @LabelsHandler.getLabelsForDoc.callCount.should.equal 1 - @LabelsHandler.getLabelsForDoc.calledWith(@projectId).should.equal true - - it 'should call next with an error', -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @next.callCount.should.equal 1 - expect(@next.lastCall.args[0]).to.be.instanceof Error - - it 'should not send a json response', -> - @LabelsController.broadcastLabelsForDoc(@req, @res, @next) - @res.json.callCount.should.equal 0 diff --git a/services/web/test/UnitTests/coffee/Labels/LabelsHandlerTests.coffee b/services/web/test/UnitTests/coffee/Labels/LabelsHandlerTests.coffee deleted file mode 100644 index 50ce418e63..0000000000 --- a/services/web/test/UnitTests/coffee/Labels/LabelsHandlerTests.coffee +++ /dev/null @@ -1,134 +0,0 @@ -chai = require('chai') -chai.should() -expect = chai.expect -sinon = require("sinon") -modulePath = "../../../../app/js/Features/Labels/LabelsHandler" -SandboxedModule = require('sandboxed-module') - - -describe 'LabelsHandler', -> - beforeEach -> - @projectId = 'someprojectid' - @docId = 'somedocid' - @ProjectEntityHandler = { - getAllDocs: sinon.stub() - getDoc: sinon.stub() - } - @DocumentUpdaterHandler = { - flushDocToMongo: sinon.stub() - } - @LabelsHandler = SandboxedModule.require modulePath, requires: - '../Project/ProjectEntityHandler': @ProjectEntityHandler - '../DocumentUpdater/DocumentUpdaterHandler': @DocumentUpdaterHandler - - describe 'extractLabelsFromDoc', -> - beforeEach -> - @lines = [ - 'one', - 'two', - 'three \\label{aaa}', - 'four five', - '\\label{bbb}', - 'six seven' - ] - - it 'should extract all the labels', -> - docLabels = @LabelsHandler.extractLabelsFromDoc @lines - expect(docLabels).to.deep.equal ['aaa', 'bbb'] - - describe 'extractLabelsFromProjectDocs', -> - beforeEach -> - @docs = { - 'doc_one': { - _id: 'id_one', - lines: ['one', '\\label{aaa} two', 'three'] - }, - 'doc_two': { - _id: 'id_two', - lines: ['four'] - }, - 'doc_three': { - _id: 'id_three', - lines: ['\\label{bbb}', 'five six', 'seven eight \\label{ccc} nine'] - } - } - - it 'should extract all the labels', -> - projectLabels = @LabelsHandler.extractLabelsFromProjectDocs @docs - expect(projectLabels).to.deep.equal { - 'id_one': ['aaa'], - 'id_two': [], - 'id_three': ['bbb', 'ccc'] - } - - describe 'getLabelsForDoc', -> - beforeEach -> - @fakeLines = ['one', '\\label{aaa}', 'two'] - @fakeLabels = ['aaa'] - @DocumentUpdaterHandler.flushDocToMongo = sinon.stub().callsArgWith(2, null) - @ProjectEntityHandler.getDoc = sinon.stub().callsArgWith(2, null, @fakeLines) - @LabelsHandler.extractLabelsFromDoc = sinon.stub().returns(@fakeLabels) - @call = (callback) => - @LabelsHandler.getLabelsForDoc @projectId, @docId, callback - - it 'should not produce an error', (done) -> - @call (err, docLabels) => - expect(err).to.equal null - done() - - it 'should produce docLabels', (done) -> - @call (err, docLabels) => - expect(docLabels).to.equal @fakeLabels - done() - - it 'should call flushDocToMongo', (done) -> - @call (err, docLabels) => - @DocumentUpdaterHandler.flushDocToMongo.callCount.should.equal 1 - @DocumentUpdaterHandler.flushDocToMongo.calledWith(@projectId, @docId).should.equal true - done() - - it 'should call getDoc', (done) -> - @call (err, docLabels) => - @ProjectEntityHandler.getDoc.callCount.should.equal 1 - @ProjectEntityHandler.getDoc.calledWith(@projectId, @docId).should.equal true - done() - - it 'should call extractLabelsFromDoc', (done) -> - @call (err, docLabels) => - @LabelsHandler.extractLabelsFromDoc.callCount.should.equal 1 - @LabelsHandler.extractLabelsFromDoc.calledWith(@fakeLines).should.equal true - done() - - describe 'getAllLabelsForProject', -> - beforeEach -> - @fakeDocs = { - 'doc_one': {lines: ['\\label{aaa}']} - } - @fakeLabels = ['aaa'] - @DocumentUpdaterHandler.flushProjectToMongo = sinon.stub().callsArgWith(1, null) - @ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith(1, null, @fakeDocs) - @LabelsHandler.extractLabelsFromProjectDocs = sinon.stub().returns(@fakeLabels) - @call = (callback) => - @LabelsHandler.getAllLabelsForProject @projectId, callback - - it 'should not produce an error', (done) -> - @call (err, projectLabels) => - expect(err).to.equal null - done() - - it 'should produce projectLabels', (done) -> - @call (err, projectLabels) => - expect(projectLabels).to.equal @fakeLabels - done() - - it 'should call getAllDocs', (done) -> - @call (err, projectLabels) => - @ProjectEntityHandler.getAllDocs.callCount.should.equal 1 - @ProjectEntityHandler.getAllDocs.calledWith(@projectId).should.equal true - done() - - it 'should call extractLabelsFromDoc', (done) -> - @call (err, docLabels) => - @LabelsHandler.extractLabelsFromProjectDocs.callCount.should.equal 1 - @LabelsHandler.extractLabelsFromProjectDocs.calledWith(@fakeDocs).should.equal true - done() diff --git a/services/web/test/UnitTests/coffee/Metadata/MetaControllerTests.coffee b/services/web/test/UnitTests/coffee/Metadata/MetaControllerTests.coffee new file mode 100644 index 0000000000..208a1d5c3e --- /dev/null +++ b/services/web/test/UnitTests/coffee/Metadata/MetaControllerTests.coffee @@ -0,0 +1,119 @@ +chai = require('chai') +chai.should() +expect = chai.expect +sinon = require("sinon") +modulePath = "../../../../app/js/Features/Metadata/MetaController" +SandboxedModule = require('sandboxed-module') + + +describe 'MetaController', -> + beforeEach -> + @projectId = 'somekindofid' + @EditorRealTimeController = { + emitToRoom: sinon.stub() + } + @MetaHandler = { + getAllMetaForProject: sinon.stub() + getMetaForDoc: sinon.stub() + } + @MetadataController = SandboxedModule.require modulePath, requires: + 'logger-sharelatex': {log: sinon.stub(), err: sinon.stub()} + '../Editor/EditorRealTimeController': @EditorRealTimeController + './MetaHandler': @MetaHandler + + describe 'getMetadata', -> + beforeEach -> + @fakeLabels = {'somedoc': ['a_label']} + @MetaHandler.getAllMetaForProject = sinon.stub().callsArgWith(1, null, @fakeLabels) + @req = {params: {project_id: @projectId}} + @res = {json: sinon.stub()} + @next = sinon.stub() + + it 'should call MetaHandler.getAllMetaForProject', () -> + @MetadataController.getMetadata(@req, @res, @next) + @MetaHandler.getAllMetaForProject.callCount.should.equal 1 + @MetaHandler.getAllMetaForProject.calledWith(@projectId).should.equal true + + it 'should call not call next with an error', () -> + @MetadataController.getMetadata(@req, @res, @next) + @next.callCount.should.equal 0 + + it 'should send a json response', () -> + @MetadataController.getMetadata(@req, @res, @next) + @res.json.callCount.should.equal 1 + expect(@res.json.lastCall.args[0]).to.have.all.keys ['projectId', 'projectMeta'] + + describe 'when MetaHandler.getAllMetaForProject produces an error', -> + beforeEach -> + @MetaHandler.getAllMetaForProject = sinon.stub().callsArgWith(1, new Error('woops')) + @req = {params: {project_id: @projectId}} + @res = {json: sinon.stub()} + @next = sinon.stub() + + it 'should call MetaHandler.getAllMetaForProject', () -> + @MetadataController.getMetadata(@req, @res, @next) + @MetaHandler.getAllMetaForProject.callCount.should.equal 1 + @MetaHandler.getAllMetaForProject.calledWith(@projectId).should.equal true + + it 'should call next with an error', -> + @MetadataController.getMetadata(@req, @res, @next) + @next.callCount.should.equal 1 + expect(@next.lastCall.args[0]).to.be.instanceof Error + + it 'should not send a json response', -> + @MetadataController.getMetadata(@req, @res, @next) + @res.json.callCount.should.equal 0 + + describe 'broadcastMetadataForDoc', -> + beforeEach -> + @MetaHandler.getMetaForDoc = sinon.stub().callsArgWith(2, null, @fakeLabels) + @EditorRealTimeController.emitToRoom = sinon.stub() + @docId = 'somedoc' + @req = {params: {project_id: @projectId, doc_id: @docId}} + @res = {sendStatus: sinon.stub()} + @next = sinon.stub() + + it 'should call MetaHandler.getMetaForDoc', () -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @MetaHandler.getMetaForDoc.callCount.should.equal 1 + @MetaHandler.getMetaForDoc.calledWith(@projectId).should.equal true + + it 'should call not call next with an error', () -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @next.callCount.should.equal 0 + + it 'should send a success response', () -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @res.sendStatus.callCount.should.equal 1 + @res.sendStatus.calledWith(200).should.equal true + + it 'should emit a message to room', () -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @EditorRealTimeController.emitToRoom.callCount.should.equal 1 + lastCall = @EditorRealTimeController.emitToRoom.lastCall + expect(lastCall.args[0]).to.equal @projectId + expect(lastCall.args[1]).to.equal 'broadcastDocMeta' + expect(lastCall.args[2]).to.have.all.keys ['docId', 'meta'] + + describe 'when MetaHandler.getMetaForDoc produces an error', -> + beforeEach -> + @MetaHandler.getMetaForDoc = sinon.stub().callsArgWith(2, new Error('woops')) + @EditorRealTimeController.emitToRoom = sinon.stub() + @docId = 'somedoc' + @req = {params: {project_id: @projectId, doc_id: @docId}} + @res = {json: sinon.stub()} + @next = sinon.stub() + + it 'should call MetaHandler.getMetaForDoc', () -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @MetaHandler.getMetaForDoc.callCount.should.equal 1 + @MetaHandler.getMetaForDoc.calledWith(@projectId).should.equal true + + it 'should call next with an error', -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @next.callCount.should.equal 1 + expect(@next.lastCall.args[0]).to.be.instanceof Error + + it 'should not send a json response', -> + @MetadataController.broadcastMetadataForDoc(@req, @res, @next) + @res.json.callCount.should.equal 0 diff --git a/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee b/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee new file mode 100644 index 0000000000..920e0d468f --- /dev/null +++ b/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee @@ -0,0 +1,161 @@ +chai = require('chai') +chai.should() +expect = chai.expect +sinon = require("sinon") +modulePath = "../../../../app/js/Features/Metadata/MetaHandler" +SandboxedModule = require('sandboxed-module') + + +describe 'MetaHandler', -> + beforeEach -> + @projectId = 'someprojectid' + @docId = 'somedocid' + @ProjectEntityHandler = { + getAllDocs: sinon.stub() + getDoc: sinon.stub() + } + @DocumentUpdaterHandler = { + flushDocToMongo: sinon.stub() + } + @MetaHandler = SandboxedModule.require modulePath, requires: + '../Project/ProjectEntityHandler': @ProjectEntityHandler + '../DocumentUpdater/DocumentUpdaterHandler': @DocumentUpdaterHandler + + describe 'extractMetaFromDoc', -> + beforeEach -> + @lines = [ + '\\usepackage{foo}' + '\\usepackage{bar, baz}' + 'one' + 'two' + 'three \\label{aaa}' + 'four five' + '\\label{bbb}' + 'six seven' + ] + + it 'should extract all the labels and packages', -> + docMeta = @MetaHandler.extractMetaFromDoc @lines + expect(docMeta).to.deep.equal { + labels: ['aaa', 'bbb'] + packages: ['foo', 'bar', 'baz'] + } + + describe 'extractMetaFromProjectDocs', -> + beforeEach -> + @docs = + 'doc_one': + _id: 'id_one' + lines: ['one', '\\label{aaa} two', 'three'] + 'doc_two': + _id: 'id_two' + lines: ['four'] + 'doc_three': + _id: 'id_three' + lines: [ + '\\label{bbb}' + 'five six' + 'seven eight \\label{ccc} nine' + ] + 'doc_four': + _id: 'id_four' + lines: [ + '\\usepackage[foo=bar,baz=bat]{ddd}' + '\\usepackage[draft]{something}' + ] + 'doc_five': + _id: 'id_five' + lines: [ + '\\usepackage{this,that}' + '\\usepackage[options=foo]{hello}' + 'some text' + '\\section{this}\\label{sec:intro}' + 'In Section \\ref{sec:intro} we saw' + 'nothing' + ] + + it 'should extract all metadata', -> + projectMeta = @MetaHandler.extractMetaFromProjectDocs @docs + expect(projectMeta).to.deep.equal { + 'id_one': {labels: ['aaa'], packages: []} + 'id_two': {labels: [], packages: []} + 'id_three': {labels: ['bbb', 'ccc'], packages: []} + 'id_four': {labels: [], packages: ['ddd', 'something']} + 'id_five': {labels: ['sec:intro'], packages: ['this', 'that', 'hello']} + } + + describe 'getMetaForDoc', -> + beforeEach -> + @fakeLines = ['\\usepackage{abc}', 'one', '\\label{aaa}', 'two'] + @fakeMeta = {labels: ['aaa'], packages: ['abc']} + @DocumentUpdaterHandler.flushDocToMongo = sinon.stub().callsArgWith 2, null + @ProjectEntityHandler.getDoc = sinon.stub().callsArgWith 2, null, @fakeLines + @MetaHandler.extractMetaFromDoc = sinon.stub().returns @fakeMeta + @call = (callback) => + @MetaHandler.getMetaForDoc @projectId, @docId, callback + + it 'should not produce an error', (done) -> + @call (err, docMeta) => + expect(err).to.equal null + done() + + it 'should produce docMeta', (done) -> + @call (err, docMeta) => + expect(docMeta).to.equal @fakeMeta + done() + + it 'should call flushDocToMongo', (done) -> + @call (err, docMeta) => + @DocumentUpdaterHandler.flushDocToMongo.callCount.should.equal 1 + @DocumentUpdaterHandler.flushDocToMongo.calledWith(@projectId, @docId).should.equal true + done() + + it 'should call getDoc', (done) -> + @call (err, docMeta) => + @ProjectEntityHandler.getDoc.callCount.should.equal 1 + @ProjectEntityHandler.getDoc.calledWith(@projectId, @docId).should.equal true + done() + + it 'should call extractMetaFromDoc', (done) -> + @call (err, docMeta) => + @MetaHandler.extractMetaFromDoc.callCount.should.equal 1 + @MetaHandler.extractMetaFromDoc.calledWith(@fakeLines).should.equal true + done() + + describe 'getAllMetaForProject', -> + beforeEach -> + @fakeDocs = + 'doc_one': + lines: [ + '\\usepackage[some-options,more=foo]{pkg}' + '\\label{aaa}' + ] + + @fakeMeta = {labels: ['aaa'], packages: ['pkg']} + @DocumentUpdaterHandler.flushProjectToMongo = sinon.stub().callsArgWith 1, null + @ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith 1, null, @fakeDocs + @MetaHandler.extractMetaFromProjectDocs = sinon.stub().returns @fakeMeta + @call = (callback) => + @MetaHandler.getAllMetaForProject @projectId, callback + + it 'should not produce an error', (done) -> + @call (err, projectMeta) => + expect(err).to.equal null + done() + + it 'should produce projectMeta', (done) -> + @call (err, projectMeta) => + expect(projectMeta).to.equal @fakeMeta + done() + + it 'should call getAllDocs', (done) -> + @call (err, projectMeta) => + @ProjectEntityHandler.getAllDocs.callCount.should.equal 1 + @ProjectEntityHandler.getAllDocs.calledWith(@projectId).should.equal true + done() + + it 'should call extractMetaFromDoc', (done) -> + @call (err, docMeta) => + @MetaHandler.extractMetaFromProjectDocs.callCount.should.equal 1 + @MetaHandler.extractMetaFromProjectDocs.calledWith(@fakeDocs).should.equal true + done() From da07a912291d0e3ab0ea165926a7bf52485efc22 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Fri, 13 Oct 2017 17:24:48 +0100 Subject: [PATCH 06/10] 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}]} From 98909026f55c2ada29418e0fa62126a64de3e871 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Tue, 24 Oct 2017 10:59:41 +0100 Subject: [PATCH 07/10] moving data to backend and fixing tests --- .../Features/Metadata/MetaController.coffee | 1 - .../Features/Metadata/MetaHandler.coffee | 40 +- .../Features/Metadata/packageMapping.coffee | 1 + .../auto-complete/CommandManager.coffee | 35 +- .../package_definition_snippets.coffee | 1 - .../auto-complete/top_hundred_snippets.coffee | 692 +++++++++++++++++- .../aceEditor/metadata/MetadataManager.coffee | 25 +- .../ide/metadata/services/metadata.coffee | 10 +- .../coffee/Metadata/MetaHandlerTests.coffee | 106 ++- 9 files changed, 843 insertions(+), 68 deletions(-) create mode 100644 services/web/app/coffee/Features/Metadata/packageMapping.coffee delete mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee diff --git a/services/web/app/coffee/Features/Metadata/MetaController.coffee b/services/web/app/coffee/Features/Metadata/MetaController.coffee index f8447e753c..21320d4d25 100644 --- a/services/web/app/coffee/Features/Metadata/MetaController.coffee +++ b/services/web/app/coffee/Features/Metadata/MetaController.coffee @@ -26,4 +26,3 @@ module.exports = MetaController = docId: doc_id, meta: docMeta } res.sendStatus 200 -MetaController diff --git a/services/web/app/coffee/Features/Metadata/MetaHandler.coffee b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee index 2401949b1a..822bdbde07 100644 --- a/services/web/app/coffee/Features/Metadata/MetaHandler.coffee +++ b/services/web/app/coffee/Features/Metadata/MetaHandler.coffee @@ -1,14 +1,18 @@ ProjectEntityHandler = require "../Project/ProjectEntityHandler" DocumentUpdaterHandler = require '../DocumentUpdater/DocumentUpdaterHandler' +packageMapping = require "./packageMapping" module.exports = MetaHandler = - labelCaptureRegex: () -> - /\\label\{([^\}\n\\]{0,80})\}/g + labelRegex: () -> + /\\label{(.{0,80}?)}/g - packageCaptureRegex: () -> - /^\\usepackage(?:\[((?:.|\n)*?)])?\s*?{((?:.|\n)*?)}/gm + usepackageRegex: () -> + /^\\usepackage(?:\[.{0,80}?])?{(.{0,80}?)}/g + + ReqPackageRegex: () -> + /^\\RequirePackage(?:\[.{0,80}?])?{(.{0,80}?)}/g getAllMetaForProject: (projectId, callback=(err, projectMeta)->) -> DocumentUpdaterHandler.flushProjectToMongo projectId, (err) -> @@ -31,18 +35,28 @@ module.exports = MetaHandler = callback null, docMeta extractMetaFromDoc: (lines) -> - docMeta = {labels: [], packages: []} - label_re = MetaHandler.labelCaptureRegex() - package_re = MetaHandler.packageCaptureRegex() + docMeta = {labels: [], packages: {}} + packages = [] + label_re = MetaHandler.labelRegex() + package_re = MetaHandler.usepackageRegex() + req_package_re = MetaHandler.ReqPackageRegex() for line in lines while labelMatch = label_re.exec line - if labelMatch[1] - docMeta.labels.push labelMatch[1] + if label = labelMatch[1] + docMeta.labels.push label while packageMatch = package_re.exec line - if packageMatch[2] - for pkg in packageMatch[2].split ',' - if pkg.trim() - docMeta.packages.push pkg.trim() + if messy = packageMatch[1] + for pkg in messy.split ',' + if clean = pkg.trim() + packages.push clean + while packageMatch = req_package_re.exec line + if messy = packageMatch[1] + for pkg in messy.split ',' + if clean = pkg.trim() + packages.push clean + for pkg in packages + if packageMapping[pkg]? + docMeta.packages[pkg] = packageMapping[pkg] return docMeta extractMetaFromProjectDocs: (projectDocs) -> diff --git a/services/web/app/coffee/Features/Metadata/packageMapping.coffee b/services/web/app/coffee/Features/Metadata/packageMapping.coffee new file mode 100644 index 0000000000..e2bd07b8bc --- /dev/null +++ b/services/web/app/coffee/Features/Metadata/packageMapping.coffee @@ -0,0 +1 @@ +module.exports = {"inputenc": [{"caption": "\\inputencoding{}", "snippet": "\\inputencoding{$1}", "meta": "inputenc-cmd", "score": 0.0002447047447770061}], "graphicx": [{"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "graphicx-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "graphicx-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "graphicx-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "graphicx-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "graphicx-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "graphicx-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "graphicx-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "graphicx-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "graphicx-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphicx-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "graphicx-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphicx-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "graphicx-cmd", "score": 0.004649150613625593}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "graphicx-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphicx-cmd", "score": 0.008565354665444157}], "amsmath": [{"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "amsmath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "amsmath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "amsmath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "amsmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "amsmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "amsmath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "amsmath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "amsmath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "amsmath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "amsmath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "amsmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "amsmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "amsmath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "amsmath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "amsmath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "amsmath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "amsmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "amsmath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "amsmath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "amsmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "amsmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "amsmath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "amsmath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "amsmath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "amsmath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "amsmath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "amsmath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "amsmath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "amsmath-cmd", "score": 0.0847414497955395}, {"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}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "amsmath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "amsmath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "amsmath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "amsmath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "amsmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "amsmath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "amsmath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "amsmath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "amsmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "amsmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "amsmath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "amsmath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "amsmath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "amsmath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "amsmath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "amsmath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "amsmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "amsmath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "amsmath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "amsmath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "amsmath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "amsmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "amsmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "amsmath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "amsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "amsmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "amsmath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "amsmath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "amsmath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "amsmath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "amsmath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "amsmath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "amsmath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "amsmath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "amsmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "amsmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "amsmath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "amsmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "amsmath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "amsmath-cmd", "score": 0.013399422292458848}, {"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}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "amsmath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "amsmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "amsmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "amsmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "amsmath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "amsmath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "amsmath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "amsmath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "amsmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "amsmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "amsmath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "amsmath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "amsmath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "amsmath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "amsmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "amsmath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "amsmath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "amsmath-cmd", "score": 0.18137737738638837}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "amsmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "amsmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "amsmath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "amsmath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "amsmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "amsmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "amsmath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "amsmath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "amsmath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "amsmath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "amsmath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "amsmath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "amsmath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "amsmath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "amsmath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "amsmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "amsmath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "amsmath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "amsmath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "amsmath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "amsmath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "amsmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "amsmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "amsmath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "amsmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "amsmath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "amsmath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "amsmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "amsmath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "amsmath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "amsmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "amsmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "amsmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "amsmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "amsmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "amsmath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "amsmath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "amsmath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "amsmath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "amsmath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "amsmath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "amsmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "amsmath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "amsmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "amsmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "amsmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "amsmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "amsmath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "amsmath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "amsmath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "amsmath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "amsmath-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "amsmath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "amsmath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "amsmath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "amsmath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "amsmath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsmath-cmd", "score": 0.0063276692758974925}], "geometry": [{"caption": "\\savegeometry{}", "snippet": "\\savegeometry{$1}", "meta": "geometry-cmd", "score": 6.461638865465447e-05}, {"caption": "\\loadgeometry{}", "snippet": "\\loadgeometry{$1}", "meta": "geometry-cmd", "score": 6.461638865465447e-05}, {"caption": "\\newgeometry{}", "snippet": "\\newgeometry{$1}", "meta": "geometry-cmd", "score": 0.0025977479207639352}, {"caption": "\\geometry{}", "snippet": "\\geometry{$1}", "meta": "geometry-cmd", "score": 0.046218420429973615}, {"caption": "\\csname", "snippet": "\\csname", "meta": "geometry-cmd", "score": 0.008565354665444157}, {"caption": "\\restoregeometry", "snippet": "\\restoregeometry", "meta": "geometry-cmd", "score": 0.0007546303842143648}, {"caption": "\\csname", "snippet": "\\csname", "meta": "geometry-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "geometry-cmd", "score": 0.002958865219480927}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "geometry-cmd", "score": 0.00037306820619479756}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "geometry-cmd", "score": 0.00021116765384691477}], "amssymb": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "amssymb-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "amssymb-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "amssymb-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "amssymb-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "amssymb-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "amssymb-cmd", "score": 0.0006671850995492977}], "hyperref": [{"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "hyperref-cmd", "score": 0.009472569279662113}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "hyperref-cmd", "score": 0.006492248863367502}, {"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "hyperref-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00014582556188448738}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "hyperref-cmd", "score": 0.006963729684667191}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "hyperref-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "hyperref-cmd", "score": 0.005553384455935491}, {"caption": "\\string", "snippet": "\\string", "meta": "hyperref-cmd", "score": 0.001042697111754002}, {"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "hyperref-cmd", "score": 0.017289599800633146}, {"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "hyperref-cmd", "score": 0.001509072212764015}, {"caption": "\\do", "snippet": "\\do", "meta": "hyperref-cmd", "score": 0.009278344180101056}, {"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "hyperref-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "hyperref-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "hyperref-cmd", "score": 7.849662248028187}, {"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00978652043902115}, {"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "hyperref-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00012704528567339081}, {"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "hyperref-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "hyperref-cmd", "score": 0.00018777198999871106}, {"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "hyperref-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "hyperref-cmd", "score": 0.02873756018238537}, {"caption": "\\protect", "snippet": "\\protect", "meta": "hyperref-cmd", "score": 0.0200686676229443}, {"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "hyperref-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "hyperref-cmd", "score": 7.950698053641679e-05}, {"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00029737672328168955}, {"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "hyperref-cmd", "score": 0.0073781967296121}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "hyperref-cmd", "score": 0.002140559856649122}, {"caption": "\\alph", "snippet": "\\alph", "meta": "hyperref-cmd", "score": 0.01034327266194849}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "hyperref-cmd", "score": 0.01034327266194849}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "hyperref-cmd", "score": 0.019788865471151957}, {"caption": "\\item", "snippet": "\\item", "meta": "hyperref-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "hyperref-cmd", "score": 3.800886892251021}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "hyperref-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "hyperref-cmd", "score": 0.2334089308452787}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "hyperref-cmd", "score": 1.2569477427490174}, {"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "hyperref-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0019832324299155183}, {"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "hyperref-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "hyperref-cmd", "score": 0.007928096378157487}, {"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "hyperref-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "hyperref-cmd", "score": 0.0003680857021151614}, {"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "hyperref-cmd", "score": 0.009652820108904094}, {"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "hyperref-cmd", "score": 0.7504160124360846}, {"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "hyperref-cmd", "score": 0.0005446476945175932}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "hyperref-cmd", "score": 0.13586474005868793}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "hyperref-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "hyperref-cmd", "score": 0.8973590434087177}, {"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "hyperref-cmd", "score": 0.27111130260612365}, {"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "hyperref-cmd", "score": 0.0038703587462843594}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}, {"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "hyperref-cmd", "score": 0.03741172773691362}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "hyperref-cmd", "score": 0.0004995635515943437}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "hyperref-cmd", "score": 7.847906405228455}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "hyperref-cmd", "score": 0.0174633138331273}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "hyperref-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "hyperref-cmd", "score": 0.006776001543888959}, {"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "hyperref-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "hyperref-cmd", "score": 6.006262128895586e-05}, {"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "hyperref-cmd", "score": 0.00017906650306643613}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "hyperref-cmd", "score": 0.20852115286477566}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "hyperref-cmd", "score": 1.4380093454211778}, {"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "hyperref-cmd", "score": 0.002233258780143355}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "hyperref-cmd", "score": 0.002233258780143355}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "hyperref-cmd", "score": 0.047007158741781095}, {"caption": "\\MP", "snippet": "\\MP", "meta": "hyperref-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "hyperref-cmd", "score": 0.00018344383742255004}, {"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "hyperref-cmd", "score": 0.0005446476945175932}, {"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "hyperref-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "hyperref-cmd", "score": 0.0018503938529945614}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "hyperref-cmd", "score": 0.07503475348393239}, {"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "hyperref-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0012546605780895737}, {"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "hyperref-cmd", "score": 0.004515152477030062}, {"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "hyperref-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "hyperref-cmd", "score": 0.02445837629741638}, {"caption": "\\newline", "snippet": "\\newline", "meta": "hyperref-cmd", "score": 0.3311721696201715}, {"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "hyperref-cmd", "score": 0.06967310843464661}, {"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "hyperref-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "hyperref-cmd", "score": 0.0012064581899162352}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "hyperref-cmd", "score": 0.9202908262245683}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "hyperref-cmd", "score": 0.00037306820619479756}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "hyperref-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "hyperref-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "hyperref-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "hyperref-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "hyperref-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "hyperref-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "hyperref-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "hyperref-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "hyperref-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "hyperref-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "hyperref-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "hyperref-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "hyperref-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hyperref-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hyperref-cmd", "score": 0.002958865219480927}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "hyperref-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hyperref-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hyperref-cmd", "score": 0.00530510025314411}], "babel": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "babel-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "babel-cmd", "score": 0.021170869458413965}], "color": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "color-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "color-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "color-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "color-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "color-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "color-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "color-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "color-cmd", "score": 0.2864294797053033}], "xcolor": [{"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "xcolor-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xcolor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xcolor-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "xcolor-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "xcolor-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "xcolor-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xcolor-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "xcolor-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "xcolor-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xcolor-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "xcolor-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "xcolor-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xcolor-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xcolor-cmd", "score": 0.2864294797053033}], "natbib": [{"caption": "\\citealt{}", "snippet": "\\citealt{$1}", "meta": "natbib-cmd", "score": 0.007302105441724955}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "natbib-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "natbib-cmd", "score": 0.021170869458413965}, {"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "natbib-cmd", "score": 0.05216393882408519}, {"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "natbib-cmd", "score": 0.04990693820960752}, {"caption": "\\bibname", "snippet": "\\bibname", "meta": "natbib-cmd", "score": 0.007599529252128519}, {"caption": "\\bibname{}", "snippet": "\\bibname{$1}", "meta": "natbib-cmd", "score": 0.007599529252128519}, {"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}, {"caption": "\\citepalias{}", "snippet": "\\citepalias{$1}", "meta": "natbib-cmd", "score": 0.00032712684909035603}, {"caption": "\\citepalias[][]{}", "snippet": "\\citepalias[$1][$2]{$3}", "meta": "natbib-cmd", "score": 0.00032712684909035603}, {"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "natbib-cmd", "score": 0.010304996748556729}, {"caption": "\\citep{}", "snippet": "\\citep{$1}", "meta": "natbib-cmd", "score": 0.2941882834697057}, {"caption": "\\bibsection", "snippet": "\\bibsection", "meta": "natbib-cmd", "score": 0.00038872734530908233}, {"caption": "\\bibsection{}", "snippet": "\\bibsection{$1}", "meta": "natbib-cmd", "score": 0.00038872734530908233}, {"caption": "\\refname", "snippet": "\\refname", "meta": "natbib-cmd", "score": 0.006490238196722249}, {"caption": "\\refname{}", "snippet": "\\refname{$1}", "meta": "natbib-cmd", "score": 0.006490238196722249}, {"caption": "\\citealp{}", "snippet": "\\citealp{$1}", "meta": "natbib-cmd", "score": 0.005275912376595364}, {"caption": "\\citealp[]{}", "snippet": "\\citealp[$1]{$2}", "meta": "natbib-cmd", "score": 0.005275912376595364}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "natbib-cmd", "score": 2.341195220791228}, {"caption": "\\citetalias{}", "snippet": "\\citetalias{$1}", "meta": "natbib-cmd", "score": 0.001419571355756266}, {"caption": "\\bibitem{}", "snippet": "\\bibitem{$1}", "meta": "natbib-cmd", "score": 0.3689547570562042}, {"caption": "\\bibitem[]{}", "snippet": "\\bibitem[$1]{$2}", "meta": "natbib-cmd", "score": 0.3689547570562042}, {"caption": "\\citet{}", "snippet": "\\citet{$1}", "meta": "natbib-cmd", "score": 0.09046048561361801}, {"caption": "\\defcitealias{}{}", "snippet": "\\defcitealias{$1}{$2}", "meta": "natbib-cmd", "score": 0.00042021825647418025}, {"caption": "\\aftergroup", "snippet": "\\aftergroup", "meta": "natbib-cmd", "score": 0.002020423627422133}, {"caption": "\\setcitestyle{}", "snippet": "\\setcitestyle{$1}", "meta": "natbib-cmd", "score": 0.0015840652870152204}, {"caption": "\\citeyearpar{}", "snippet": "\\citeyearpar{$1}", "meta": "natbib-cmd", "score": 0.001877888310324327}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "natbib-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "natbib-cmd", "score": 0.006776001543888959}, {"caption": "\\newblock", "snippet": "\\newblock", "meta": "natbib-cmd", "score": 0.03684301726876973}, {"caption": "\\newblock{}", "snippet": "\\newblock{$1}", "meta": "natbib-cmd", "score": 0.03684301726876973}, {"caption": "\\bibnumfmt", "snippet": "\\bibnumfmt", "meta": "natbib-cmd", "score": 0.000353353600267394}, {"caption": "\\citeyear{}", "snippet": "\\citeyear{$1}", "meta": "natbib-cmd", "score": 0.01091041305836494}, {"caption": "\\citeauthor{}", "snippet": "\\citeauthor{$1}", "meta": "natbib-cmd", "score": 0.01359248786373484}], "url": [{"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "url-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "url-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "url-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "url-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "url-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "url-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "url-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "url-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "url-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "url-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "url-cmd", "score": 3.7048287721105874e-05}], "fontenc": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fontenc-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fontenc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fontenc-cmd", "score": 0.021170869458413965}], "tikz": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-cmd", "score": 0.2864294797053033}], "fancyhdr": [{"caption": "\\lhead{}", "snippet": "\\lhead{$1}", "meta": "fancyhdr-cmd", "score": 0.05268978171228714}, {"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "fancyhdr-cmd", "score": 0.005924520024686584}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "fancyhdr-cmd", "score": 0.005924520024686584}, {"caption": "\\fancypagestyle{}{}", "snippet": "\\fancypagestyle{$1}{$2}", "meta": "fancyhdr-cmd", "score": 0.009430919590937878}, {"caption": "\\footrule", "snippet": "\\footrule", "meta": "fancyhdr-cmd", "score": 0.0010032754348913366}, {"caption": "\\footrule{}", "snippet": "\\footrule{$1}", "meta": "fancyhdr-cmd", "score": 0.0010032754348913366}, {"caption": "\\fancyfoot[]{}", "snippet": "\\fancyfoot[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfoot{}", "snippet": "\\fancyfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfootoffset[]{}", "snippet": "\\fancyfootoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.0015373246231684555}, {"caption": "\\fancyfootoffset{}", "snippet": "\\fancyfootoffset{$1}", "meta": "fancyhdr-cmd", "score": 0.0015373246231684555}, {"caption": "\\footruleskip", "snippet": "\\footruleskip", "meta": "fancyhdr-cmd", "score": 0.000830117957327721}, {"caption": "\\fancyheadoffset[]{}", "snippet": "\\fancyheadoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.0016786568695309166}, {"caption": "\\fancyheadoffset{}", "snippet": "\\fancyheadoffset{$1}", "meta": "fancyhdr-cmd", "score": 0.0016786568695309166}, {"caption": "\\iffloatpage{}{}", "snippet": "\\iffloatpage{$1}{$2}", "meta": "fancyhdr-cmd", "score": 6.606286310833368e-05}, {"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.013411641301057813}, {"caption": "\\subsectionmark", "snippet": "\\subsectionmark", "meta": "fancyhdr-cmd", "score": 3.1153423008593836e-05}, {"caption": "\\footrulewidth", "snippet": "\\footrulewidth", "meta": "fancyhdr-cmd", "score": 0.011424740897486949}, {"caption": "\\fancyhfoffset[]{}", "snippet": "\\fancyhfoffset[$1]{$2}", "meta": "fancyhdr-cmd", "score": 3.741978601121172e-05}, {"caption": "\\rhead{}", "snippet": "\\rhead{$1}", "meta": "fancyhdr-cmd", "score": 0.022782817416731292}, {"caption": "\\fancyplain{}{}", "snippet": "\\fancyplain{$1}{$2}", "meta": "fancyhdr-cmd", "score": 0.007402339896386138}, {"caption": "\\rfoot{}", "snippet": "\\rfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.013393817825547868}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fancyhdr-cmd", "score": 0.00530510025314411}, {"caption": "\\plainheadrulewidth", "snippet": "\\plainheadrulewidth", "meta": "fancyhdr-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "fancyhdr-cmd", "score": 0.03225350148161425}, {"caption": "\\lfoot{}", "snippet": "\\lfoot{$1}", "meta": "fancyhdr-cmd", "score": 0.00789399846642229}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "fancyhdr-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "fancyhdr-cmd", "score": 0.006776001543888959}, {"caption": "\\fancyhf{}", "snippet": "\\fancyhf{$1}", "meta": "fancyhdr-cmd", "score": 0.02314618933449356}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "fancyhdr-cmd", "score": 0.005008938879210868}, {"caption": "\\fancyhead[]{}", "snippet": "\\fancyhead[$1]{$2}", "meta": "fancyhdr-cmd", "score": 0.039101068064744296}, {"caption": "\\fancyhead{}", "snippet": "\\fancyhead{$1}", "meta": "fancyhdr-cmd", "score": 0.039101068064744296}, {"caption": "\\nouppercase{}", "snippet": "\\nouppercase{$1}", "meta": "fancyhdr-cmd", "score": 0.006416387071584083}, {"caption": "\\nouppercase", "snippet": "\\nouppercase", "meta": "fancyhdr-cmd", "score": 0.006416387071584083}, {"caption": "\\headrule", "snippet": "\\headrule", "meta": "fancyhdr-cmd", "score": 0.0008327432627715623}, {"caption": "\\headrule{}", "snippet": "\\headrule{$1}", "meta": "fancyhdr-cmd", "score": 0.0008327432627715623}, {"caption": "\\chead{}", "snippet": "\\chead{$1}", "meta": "fancyhdr-cmd", "score": 0.00755042164734884}, {"caption": "\\headrulewidth", "snippet": "\\headrulewidth", "meta": "fancyhdr-cmd", "score": 0.02268137935335823}], "booktabs": [{"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "booktabs-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "booktabs-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "booktabs-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "booktabs-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "booktabs-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "booktabs-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "booktabs-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "booktabs-cmd", "score": 0.059857788139528495}], "amsfonts": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "amsfonts-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "amsfonts-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "amsfonts-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "amsfonts-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "amsfonts-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "amsfonts-cmd", "score": 0.0006671850995492977}], "float": [{"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "float-cmd", "score": 0.0009837365348002915}, {"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "float-cmd", "score": 0.0005815474978918903}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "float-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "float-cmd", "score": 0.0015470917047414941}, {"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "float-cmd", "score": 0.0011934321931750752}, {"caption": "\\csname", "snippet": "\\csname", "meta": "float-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "float-cmd", "score": 1.2569477427490174}, {"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}], "amsthm": [{"caption": "\\swapnumbers", "snippet": "\\swapnumbers", "meta": "amsthm-cmd", "score": 0.0002908376412221364}, {"caption": "\\qedhere", "snippet": "\\qedhere", "meta": "amsthm-cmd", "score": 0.0001608548097938035}, {"caption": "\\qed", "snippet": "\\qed", "meta": "amsthm-cmd", "score": 0.0014240748825867814}, {"caption": "\\qed{}", "snippet": "\\qed{$1}", "meta": "amsthm-cmd", "score": 0.0014240748825867814}, {"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}, {"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "amsthm-cmd", "score": 0.02533412165007986}, {"caption": "\\proofname", "snippet": "\\proofname", "meta": "amsthm-cmd", "score": 0.00021208362094925234}, {"caption": "\\pushQED{}", "snippet": "\\pushQED{$1}", "meta": "amsthm-cmd", "score": 0.00019346981338869148}, {"caption": "\\qedsymbol", "snippet": "\\qedsymbol", "meta": "amsthm-cmd", "score": 0.0022671784428571723}, {"caption": "\\qedsymbol{}", "snippet": "\\qedsymbol{$1}", "meta": "amsthm-cmd", "score": 0.0022671784428571723}, {"caption": "\\popQED", "snippet": "\\popQED", "meta": "amsthm-cmd", "score": 9.673490669434574e-05}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "amsthm-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "amsthm-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "amsthm-cmd", "score": 0.215689795055434}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsthm-cmd", "score": 0.0063276692758974925}], "caption": [{"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "caption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "caption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "caption-cmd", "score": 0.018348594199161503}, {"caption": "\\string", "snippet": "\\string", "meta": "caption-cmd", "score": 0.001042697111754002}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "caption-cmd", "score": 0.047007158741781095}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "caption-cmd", "score": 0.00530510025314411}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "caption-cmd", "score": 0.0030745841706804776}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "caption-cmd", "score": 0.422097569591803}, {"caption": "\\csname", "snippet": "\\csname", "meta": "caption-cmd", "score": 0.008565354665444157}, {"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "caption-cmd", "score": 0.3147206476372336}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "caption-cmd", "score": 1.2569477427490174}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "caption-cmd", "score": 1.897791904799601}, {"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "caption-cmd", "score": 5.806935368083486e-05}, {"caption": "\\noindent", "snippet": "\\noindent", "meta": "caption-cmd", "score": 0.42355747798114207}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "caption-cmd", "score": 0.00037306820619479756}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "caption-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "caption-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "caption-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "caption-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "caption-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "caption-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "caption-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "caption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "caption-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "caption-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "caption-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "caption-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "caption-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "caption-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "caption-cmd", "score": 0.021473212893597875}], "ifthen": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "ifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "ifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "ifthen-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "ifthen-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "ifthen-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "ifthen-cmd", "score": 0.0018957469739775527}], "setspace": [{"caption": "\\setstretch{}", "snippet": "\\setstretch{$1}", "meta": "setspace-cmd", "score": 0.019634763572332112}, {"caption": "\\onehalfspacing", "snippet": "\\onehalfspacing", "meta": "setspace-cmd", "score": 0.010655415521079565}, {"caption": "\\singlespacing", "snippet": "\\singlespacing", "meta": "setspace-cmd", "score": 0.008351544612280968}, {"caption": "\\doublespacing", "snippet": "\\doublespacing", "meta": "setspace-cmd", "score": 0.007835428951987135}, {"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "setspace-cmd", "score": 0.03225350148161425}], "multirow": [{"caption": "\\multirow{}{}{}", "snippet": "\\multirow{$1}{$2}{$3}", "meta": "multirow-cmd", "score": 0.07525389638751734}, {"caption": "\\multirow{}[]{}{}", "snippet": "\\multirow{$1}[$2]{$3}{$4}", "meta": "multirow-cmd", "score": 0.07525389638751734}], "array": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "array-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "array-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "array-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "array-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "array-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "array-cmd", "score": 0.008565354665444157}, {"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}], "titlesec": [{"caption": "\\titleclass{}{}[]", "snippet": "\\titleclass{$1}{$2}[$3]", "meta": "titlesec-cmd", "score": 0.00028979763314974667}, {"caption": "\\titlelabel{}", "snippet": "\\titlelabel{$1}", "meta": "titlesec-cmd", "score": 6.40387839367932e-06}, {"caption": "\\thetitle", "snippet": "\\thetitle", "meta": "titlesec-cmd", "score": 0.0015531478302713473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "titlesec-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "titlesec-cmd", "score": 0.021170869458413965}, {"caption": "\\titleformat{}{}{}{}{}[]", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}[$6]", "meta": "titlesec-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}[]{}{}{}{}", "snippet": "\\titleformat{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "titlesec-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}", "snippet": "\\titleformat{$1}{$2}", "meta": "titlesec-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}{}{}{}", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}", "meta": "titlesec-cmd", "score": 0.03475519439740096}, {"caption": "\\titlespacing{}{}{}{}", "snippet": "\\titlespacing{$1}{$2}{$3}{$4}", "meta": "titlesec-cmd", "score": 0.023062744385192156}, {"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "titlesec-cmd", "score": 0.038323601301945065}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "titlesec-cmd", "score": 0.038323601301945065}, {"caption": "\\markright{}", "snippet": "\\markright{$1}", "meta": "titlesec-cmd", "score": 0.007138622674767024}, {"caption": "\\markright{}{}", "snippet": "\\markright{$1}{$2}", "meta": "titlesec-cmd", "score": 0.007138622674767024}, {"caption": "\\filleft", "snippet": "\\filleft", "meta": "titlesec-cmd", "score": 7.959989906732799e-05}, {"caption": "\\filcenter", "snippet": "\\filcenter", "meta": "titlesec-cmd", "score": 0.0004835660211260246}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "titlesec-cmd", "score": 0.2253056071787701}, {"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "titlesec-cmd", "score": 0.044016804142963585}, {"caption": "\\csname", "snippet": "\\csname", "meta": "titlesec-cmd", "score": 0.008565354665444157}, {"caption": "\\chaptertitlename", "snippet": "\\chaptertitlename", "meta": "titlesec-cmd", "score": 0.0016985007766926272}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "titlesec-cmd", "score": 0.3277033727934986}, {"caption": "\\filright", "snippet": "\\filright", "meta": "titlesec-cmd", "score": 7.959989906732799e-05}, {"caption": "\\titlerule", "snippet": "\\titlerule", "meta": "titlesec-cmd", "score": 0.019273712561461216}, {"caption": "\\titlerule[]{}", "snippet": "\\titlerule[$1]{$2}", "meta": "titlesec-cmd", "score": 0.019273712561461216}], "multicol": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "multicol-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "multicol-cmd", "score": 0.021170869458413965}, {"caption": "\\raggedcolumns", "snippet": "\\raggedcolumns", "meta": "multicol-cmd", "score": 0.00027461965178228156}, {"caption": "\\columnbreak", "snippet": "\\columnbreak", "meta": "multicol-cmd", "score": 0.002609610141555795}, {"caption": "\\columnseprulecolor{}", "snippet": "\\columnseprulecolor{$1}", "meta": "multicol-cmd", "score": 1.3314892207625771e-05}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "multicol-cmd", "score": 0.1789117552185788}], "listings": [{"caption": "\\vskip", "snippet": "\\vskip", "meta": "listings-cmd", "score": 0.05143052892347224}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "listings-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "listings-cmd", "score": 0.021170869458413965}, {"caption": "\\do", "snippet": "\\do", "meta": "listings-cmd", "score": 0.009278344180101056}, {"caption": "\\thelstlisting", "snippet": "\\thelstlisting", "meta": "listings-cmd", "score": 0.00012774128088872144}, {"caption": "\\lstinputlisting[]{}", "snippet": "\\lstinputlisting[$1]{$2}", "meta": "listings-cmd", "score": 0.011660477607086044}, {"caption": "\\lstinputlisting{}", "snippet": "\\lstinputlisting{$1}", "meta": "listings-cmd", "score": 0.011660477607086044}, {"caption": "\\space", "snippet": "\\space", "meta": "listings-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "listings-cmd", "score": 0.008565354665444157}, {"caption": "\\lstinline", "snippet": "\\lstinline", "meta": "listings-cmd", "score": 0.005972262850694285}, {"caption": "\\lstinline{}", "snippet": "\\lstinline{$1}", "meta": "listings-cmd", "score": 0.005972262850694285}, {"caption": "\\lstlistoflistings", "snippet": "\\lstlistoflistings", "meta": "listings-cmd", "score": 0.005279080363360602}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "listings-cmd", "score": 0.00037306820619479756}], "blindtext": [{"caption": "\\glqq", "snippet": "\\glqq", "meta": "blindtext-cmd", "score": 0.0039133256714254504}, {"caption": "\\glqq{}", "snippet": "\\glqq{$1}", "meta": "blindtext-cmd", "score": 0.0039133256714254504}, {"caption": "\\blindtext", "snippet": "\\blindtext", "meta": "blindtext-cmd", "score": 0.05782040856823667}, {"caption": "\\blindtext[]", "snippet": "\\blindtext[$1]", "meta": "blindtext-cmd", "score": 0.05782040856823667}, {"caption": "\\Blindtext", "snippet": "\\Blindtext", "meta": "blindtext-cmd", "score": 0.006384906903938044}, {"caption": "\\grqq", "snippet": "\\grqq", "meta": "blindtext-cmd", "score": 0.006659522189248266}, {"caption": "\\grqq{}", "snippet": "\\grqq{$1}", "meta": "blindtext-cmd", "score": 0.006659522189248266}, {"caption": "\\blinddocument", "snippet": "\\blinddocument", "meta": "blindtext-cmd", "score": 0.00011480988129172825}, {"caption": "\\xspace", "snippet": "\\xspace", "meta": "blindtext-cmd", "score": 0.07560370351316588}], "enumitem": [{"caption": "\\newlist{}{}{}", "snippet": "\\newlist{$1}{$2}{$3}", "meta": "enumitem-cmd", "score": 0.0007266225924074459}, {"caption": "\\setlist[]{}", "snippet": "\\setlist[$1]{$2}", "meta": "enumitem-cmd", "score": 0.010895384475728338}, {"caption": "\\setlist{}", "snippet": "\\setlist{$1}", "meta": "enumitem-cmd", "score": 0.010895384475728338}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "enumitem-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "enumitem-cmd", "score": 0.021170869458413965}, {"caption": "\\setlistdepth{}", "snippet": "\\setlistdepth{$1}", "meta": "enumitem-cmd", "score": 0.0001113322912630871}, {"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}, {"caption": "\\renewlist{}{}{}", "snippet": "\\renewlist{$1}{$2}{$3}", "meta": "enumitem-cmd", "score": 0.0001113322912630871}, {"caption": "\\descriptionlabel{}", "snippet": "\\descriptionlabel{$1}", "meta": "enumitem-cmd", "score": 7.678089052626698e-06}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "enumitem-cmd", "score": 0.00530510025314411}, {"caption": "\\setitemize[]{}", "snippet": "\\setitemize[$1]{$2}", "meta": "enumitem-cmd", "score": 0.0019580640711971786}, {"caption": "\\csname", "snippet": "\\csname", "meta": "enumitem-cmd", "score": 0.008565354665444157}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "enumitem-cmd", "score": 0.01590723355124104}, {"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": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "times-cmd", "score": 0.0012870877747432935}, {"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "times-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "times-cmd", "score": 0.008427383388519996}, {"caption": "\\ttdefault", "snippet": "\\ttdefault", "meta": "times-cmd", "score": 0.0011733254149332488}, {"caption": "\\ttdefault{}", "snippet": "\\ttdefault{$1}", "meta": "times-cmd", "score": 0.0011733254149332488}], "subcaption": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subcaption-cmd", "score": 0.007192033516871399}, {"caption": "\\subcaptionbox{}{}", "snippet": "\\subcaptionbox{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0008634329663023698}, {"caption": "\\newsubfloat{}", "snippet": "\\newsubfloat{$1}", "meta": "subcaption-cmd", "score": 0.000615805121082521}, {"caption": "\\subcaption{}", "snippet": "\\subcaption{$1}", "meta": "subcaption-cmd", "score": 0.006820005741581297}, {"caption": "\\subcaption[]{}", "snippet": "\\subcaption[$1]{$2}", "meta": "subcaption-cmd", "score": 0.006820005741581297}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "subcaption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "subcaption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "subcaption-cmd", "score": 0.018348594199161503}, {"caption": "\\string", "snippet": "\\string", "meta": "subcaption-cmd", "score": 0.001042697111754002}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "subcaption-cmd", "score": 0.047007158741781095}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "subcaption-cmd", "score": 0.00530510025314411}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "subcaption-cmd", "score": 0.0030745841706804776}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "subcaption-cmd", "score": 0.422097569591803}, {"caption": "\\csname", "snippet": "\\csname", "meta": "subcaption-cmd", "score": 0.008565354665444157}, {"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "subcaption-cmd", "score": 0.3147206476372336}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "subcaption-cmd", "score": 1.2569477427490174}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "subcaption-cmd", "score": 1.897791904799601}, {"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "subcaption-cmd", "score": 5.806935368083486e-05}, {"caption": "\\noindent", "snippet": "\\noindent", "meta": "subcaption-cmd", "score": 0.42355747798114207}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "subcaption-cmd", "score": 0.00037306820619479756}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "subcaption-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "subcaption-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "subcaption-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "subcaption-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "subcaption-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "subcaption-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "subcaption-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "subcaption-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "subcaption-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "subcaption-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "subcaption-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "subcaption-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "subcaption-cmd", "score": 0.021473212893597875}], "bm": [{"caption": "\\bm{}", "snippet": "\\bm{$1}", "meta": "bm-cmd", "score": 0.14733018077819282}, {"caption": "\\bm", "snippet": "\\bm", "meta": "bm-cmd", "score": 0.14733018077819282}], "fontspec": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "fontspec-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "fontspec-cmd", "score": 0.2864294797053033}], "subfigure": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subfigure-cmd", "score": 0.007192033516871399}, {"caption": "\\subfigure[]{}", "snippet": "\\subfigure[$1]{$2}", "meta": "subfigure-cmd", "score": 0.037856842641104005}], "calc": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "calc-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "calc-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "calc-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "calc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "calc-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "calc-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "calc-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "calc-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "calc-cmd", "score": 0.028955796305270766}], "tabularx": [{"caption": "\\let", "snippet": "\\let", "meta": "tabularx-cmd", "score": 0.03789745970461662}, {"caption": "\\write", "snippet": "\\write", "meta": "tabularx-cmd", "score": 0.0008038857295393196}, {"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "tabularx-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "tabularx-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "tabularx-cmd", "score": 0.0005861357565780464}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabularx-cmd", "score": 0.014532521139459619}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "tabularx-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabularx-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "tabularx-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabularx-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "tabularx-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tabularx-cmd", "score": 0.008565354665444157}, {"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}], "algorithm": [{"caption": "\\listalgorithmname", "snippet": "\\listalgorithmname", "meta": "algorithm-cmd", "score": 0.00022490402516652368}, {"caption": "\\listofalgorithms", "snippet": "\\listofalgorithms", "meta": "algorithm-cmd", "score": 0.0012576983422794912}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithm-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithm-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithm-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithm-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithm-cmd", "score": 0.0018957469739775527}, {"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0009837365348002915}, {"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0005815474978918903}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "algorithm-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "algorithm-cmd", "score": 0.0015470917047414941}, {"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "algorithm-cmd", "score": 0.0011934321931750752}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algorithm-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "algorithm-cmd", "score": 1.2569477427490174}, {"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}], "biblatex": [{"caption": "\\textcite{}", "snippet": "\\textcite{$1}", "meta": "biblatex-cmd", "score": 0.0071363824748767206}, {"caption": "\\iffieldundef{}{}{}", "snippet": "\\iffieldundef{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"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}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\printbibliography", "snippet": "\\printbibliography", "meta": "biblatex-cmd", "score": 0.028923378512954446}, {"caption": "\\printbibliography[]", "snippet": "\\printbibliography[$1]", "meta": "biblatex-cmd", "score": 0.028923378512954446}, {"caption": "\\keyword{}", "snippet": "\\keyword{$1}", "meta": "biblatex-cmd", "score": 0.0056978719547823445}, {"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "biblatex-cmd", "score": 0.04990693820960752}, {"caption": "\\do", "snippet": "\\do", "meta": "biblatex-cmd", "score": 0.009278344180101056}, {"caption": "\\mkbibquote{}", "snippet": "\\mkbibquote{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"caption": "\\addabbrvspace", "snippet": "\\addabbrvspace", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"caption": "\\AtEveryBibitem{}", "snippet": "\\AtEveryBibitem{$1}", "meta": "biblatex-cmd", "score": 0.0006862523808353773}, {"caption": "\\mkbibemph{}", "snippet": "\\mkbibemph{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"caption": "\\DeclareFieldFormat{}{}", "snippet": "\\DeclareFieldFormat{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00028207109055618685}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "biblatex-cmd", "score": 0.2659628337907604}, {"caption": "\\enquote{}", "snippet": "\\enquote{$1}", "meta": "biblatex-cmd", "score": 0.0077432730806830915}, {"caption": "\\bibopenbracket", "snippet": "\\bibopenbracket", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\newbibmacro{}[]{}", "snippet": "\\newbibmacro{$1}[$2]{$3}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"caption": "\\addbibresource{}", "snippet": "\\addbibresource{$1}", "meta": "biblatex-cmd", "score": 0.033545778388159704}, {"caption": "\\defbibheading{}{}", "snippet": "\\defbibheading{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00013423526504458629}, {"caption": "\\DeclareNameAlias{}{}", "snippet": "\\DeclareNameAlias{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0003596306478652252}, {"caption": "\\bibcloseparen", "snippet": "\\bibcloseparen", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\renewbibmacro{}{}", "snippet": "\\renewbibmacro{$1}{$2}", "meta": "biblatex-cmd", "score": 9.70299207241043e-05}, {"caption": "\\bibclosebracket", "snippet": "\\bibclosebracket", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\item", "snippet": "\\item", "meta": "biblatex-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "biblatex-cmd", "score": 3.800886892251021}, {"caption": "\\parentext", "snippet": "\\parentext", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "biblatex-cmd", "score": 2.341195220791228}, {"caption": "\\addspace", "snippet": "\\addspace", "meta": "biblatex-cmd", "score": 0.0002657609533376918}, {"caption": "\\ifentrytype{}{}{}", "snippet": "\\ifentrytype{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 8.342875497183237e-05}, {"caption": "\\addslash", "snippet": "\\addslash", "meta": "biblatex-cmd", "score": 0.0002657609533376918}, {"caption": "\\DefineBibliographyStrings{}{}", "snippet": "\\DefineBibliographyStrings{$1}{$2}", "meta": "biblatex-cmd", "score": 0.001537977148659816}, {"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "biblatex-cmd", "score": 3.0952612541683835}, {"caption": "\\newblockpunct", "snippet": "\\newblockpunct", "meta": "biblatex-cmd", "score": 0.0001328804766688459}, {"caption": "\\defbibfilter{}{}", "snippet": "\\defbibfilter{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0005203319717980072}, {"caption": "\\parencite{}", "snippet": "\\parencite{$1}", "meta": "biblatex-cmd", "score": 0.0447747090014577}, {"caption": "\\parencite[]{}", "snippet": "\\parencite[$1]{$2}", "meta": "biblatex-cmd", "score": 0.0447747090014577}, {"caption": "\\midsentence", "snippet": "\\midsentence", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "biblatex-cmd", "score": 0.0004995635515943437}, {"caption": "\\DeclareSourcemap{}", "snippet": "\\DeclareSourcemap{$1}", "meta": "biblatex-cmd", "score": 0.0005203319717980072}, {"caption": "\\AtBeginBibliography{}", "snippet": "\\AtBeginBibliography{$1}", "meta": "biblatex-cmd", "score": 0.0004668773504581073}, {"caption": "\\AtEveryCite{}", "snippet": "\\AtEveryCite{$1}", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\DeclareLanguageMapping{}{}", "snippet": "\\DeclareLanguageMapping{$1}{$2}", "meta": "biblatex-cmd", "score": 0.000703956971675325}, {"caption": "\\addtocategory{}{}", "snippet": "\\addtocategory{$1}{$2}", "meta": "biblatex-cmd", "score": 0.008238589553468446}, {"caption": "\\DeclareBibliographyCategory{}", "snippet": "\\DeclareBibliographyCategory{$1}", "meta": "biblatex-cmd", "score": 0.0010298236941835557}, {"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}, {"caption": "\\bibopenparen", "snippet": "\\bibopenparen", "meta": "biblatex-cmd", "score": 0.0005125772067631753}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}, {"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}, {"caption": "\\ExecuteBibliographyOptions{}", "snippet": "\\ExecuteBibliographyOptions{$1}", "meta": "biblatex-cmd", "score": 4.841482597532878e-05}, {"caption": "\\usebibmacro{}{}", "snippet": "\\usebibmacro{$1}{$2}", "meta": "biblatex-cmd", "score": 9.682965195065755e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00037306820619479756}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "biblatex-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "biblatex-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "biblatex-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "biblatex-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "biblatex-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "biblatex-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "biblatex-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "biblatex-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "biblatex-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\do", "snippet": "\\do", "meta": "biblatex-cmd", "score": 0.009278344180101056}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "biblatex-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "biblatex-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "biblatex-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "biblatex-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "biblatex-cmd", "score": 0.0018957469739775527}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "biblatex-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "biblatex-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "biblatex-cmd", "score": 0.021170869458413965}, {"caption": "\\empty", "snippet": "\\empty", "meta": "biblatex-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "biblatex-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "biblatex-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "biblatex-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "biblatex-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "biblatex-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "biblatex-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "biblatex-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "biblatex-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 7.723677706376668e-05}, {"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}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "biblatex-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "biblatex-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "biblatex-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "biblatex-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "biblatex-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "biblatex-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-cmd", "score": 0.008565354665444157}], "microtype": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "microtype-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "microtype-cmd", "score": 0.021170869458413965}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "microtype-cmd", "score": 0.00530510025314411}, {"caption": "\\lsstyle", "snippet": "\\lsstyle", "meta": "microtype-cmd", "score": 0.0023367519914345774}, {"caption": "\\space", "snippet": "\\space", "meta": "microtype-cmd", "score": 0.023010789853665694}, {"caption": "\\DisableLigatures[]{}", "snippet": "\\DisableLigatures[$1]{$2}", "meta": "microtype-cmd", "score": 0.0009805246614299932}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "microtype-cmd", "score": 0.00037306820619479756}], "etoolbox": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "etoolbox-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "etoolbox-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "etoolbox-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "etoolbox-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "etoolbox-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "etoolbox-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 7.723677706376668e-05}, {"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}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "etoolbox-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "etoolbox-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "etoolbox-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "etoolbox-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "etoolbox-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "etoolbox-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "etoolbox-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "etoolbox-cmd", "score": 0.008565354665444157}], "longtable": [{"caption": "\\endhead", "snippet": "\\endhead", "meta": "longtable-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "longtable-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "longtable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "longtable-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "longtable-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "longtable-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "longtable-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "longtable-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "longtable-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "longtable-cmd", "score": 0.0313525090421608}], "mathtools": [{"caption": "\\xleftrightarrow[][]{}", "snippet": "\\xleftrightarrow[$1][$2]{$3}", "meta": "mathtools-cmd", "score": 4.015559489911509e-05}, {"caption": "\\vcentcolon", "snippet": "\\vcentcolon", "meta": "mathtools-cmd", "score": 0.00021361943526711615}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "mathtools-cmd", "score": 0.0016148076375871775}, {"caption": "\\coloneqq", "snippet": "\\coloneqq", "meta": "mathtools-cmd", "score": 0.0014407293323958122}, {"caption": "\\mathclap{}", "snippet": "\\mathclap{$1}", "meta": "mathtools-cmd", "score": 7.84378567451772e-05}, {"caption": "\\adjustlimits", "snippet": "\\adjustlimits", "meta": "mathtools-cmd", "score": 0.0005307066890271085}, {"caption": "\\MoveEqLeft", "snippet": "\\MoveEqLeft", "meta": "mathtools-cmd", "score": 5.343949980628182e-05}, {"caption": "\\mathrlap{}", "snippet": "\\mathrlap{$1}", "meta": "mathtools-cmd", "score": 0.0003112817211637952}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "mathtools-cmd", "score": 0.051980653969641216}, {"caption": "\\xhookrightarrow{}", "snippet": "\\xhookrightarrow{$1}", "meta": "mathtools-cmd", "score": 5.444260823474129e-05}, {"caption": "\\DeclarePairedDelimiter{}{}{}", "snippet": "\\DeclarePairedDelimiter{$1}{$2}{$3}", "meta": "mathtools-cmd", "score": 0.0033916678416372487}, {"caption": "\\DeclarePairedDelimiter", "snippet": "\\DeclarePairedDelimiter", "meta": "mathtools-cmd", "score": 0.0033916678416372487}, {"caption": "\\prescript{}{}{}", "snippet": "\\prescript{$1}{$2}{$3}", "meta": "mathtools-cmd", "score": 8.833369785705982e-06}, {"caption": "\\underbrace{}", "snippet": "\\underbrace{$1}", "meta": "mathtools-cmd", "score": 0.010373780436850907}, {"caption": "\\mathllap{}", "snippet": "\\mathllap{$1}", "meta": "mathtools-cmd", "score": 3.140504277052775e-05}, {"caption": "\\overbrace{}", "snippet": "\\overbrace{$1}", "meta": "mathtools-cmd", "score": 0.0006045704778718376}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "mathtools-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "mathtools-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "mathtools-cmd", "score": 0.18137737738638837}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "mathtools-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mathtools-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "mathtools-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "mathtools-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mathtools-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mathtools-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mathtools-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "mathtools-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "mathtools-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "mathtools-cmd", "score": 0.028955796305270766}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mathtools-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mathtools-cmd", "score": 0.021170869458413965}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "mathtools-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "mathtools-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "mathtools-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "mathtools-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "mathtools-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "mathtools-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "mathtools-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "mathtools-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "mathtools-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "mathtools-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "mathtools-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "mathtools-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "mathtools-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "mathtools-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "mathtools-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "mathtools-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "mathtools-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "mathtools-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "mathtools-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "mathtools-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "mathtools-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "mathtools-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "mathtools-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "mathtools-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "mathtools-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "mathtools-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "mathtools-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "mathtools-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "mathtools-cmd", "score": 0.0847414497955395}, {"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}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "mathtools-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "mathtools-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "mathtools-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "mathtools-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "mathtools-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "mathtools-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "mathtools-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "mathtools-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "mathtools-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "mathtools-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "mathtools-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "mathtools-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "mathtools-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "mathtools-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "mathtools-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "mathtools-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "mathtools-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "mathtools-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "mathtools-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "mathtools-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "mathtools-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "mathtools-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "mathtools-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "mathtools-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "mathtools-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "mathtools-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "mathtools-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "mathtools-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "mathtools-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "mathtools-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "mathtools-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "mathtools-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "mathtools-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "mathtools-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "mathtools-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "mathtools-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "mathtools-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "mathtools-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "mathtools-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "mathtools-cmd", "score": 0.013399422292458848}, {"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}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "mathtools-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "mathtools-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "mathtools-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "mathtools-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "mathtools-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "mathtools-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "mathtools-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "mathtools-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "mathtools-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "mathtools-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "mathtools-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "mathtools-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "mathtools-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "mathtools-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "mathtools-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "mathtools-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "mathtools-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "mathtools-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "mathtools-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "mathtools-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "mathtools-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "mathtools-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "mathtools-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "mathtools-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "mathtools-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "mathtools-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "mathtools-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "mathtools-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "mathtools-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "mathtools-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "mathtools-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "mathtools-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "mathtools-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "mathtools-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "mathtools-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "mathtools-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "mathtools-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "mathtools-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "mathtools-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "mathtools-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "mathtools-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "mathtools-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "mathtools-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "mathtools-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "mathtools-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "mathtools-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "mathtools-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "mathtools-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "mathtools-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "mathtools-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "mathtools-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "mathtools-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "mathtools-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "mathtools-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "mathtools-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "mathtools-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "mathtools-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "mathtools-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "mathtools-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "mathtools-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "mathtools-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "mathtools-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "mathtools-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "mathtools-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "mathtools-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "mathtools-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "mathtools-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mathtools-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mathtools-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "mathtools-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mathtools-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "mathtools-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "mathtools-cmd", "score": 0.0063276692758974925}], "verbatim": [{"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "verbatim-cmd", "score": 0.0022216421267780076}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "verbatim-cmd", "score": 0.0072203369120285256}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "verbatim-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "verbatim-cmd", "score": 0.021170869458413965}, {"caption": "\\par", "snippet": "\\par", "meta": "verbatim-cmd", "score": 0.413853376001159}, {"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "verbatim-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "verbatim-cmd", "score": 0.0024547099784948665}], "wrapfig": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "wrapfig-cmd", "score": 0.00530510025314411}, {"caption": "\\par", "snippet": "\\par", "meta": "wrapfig-cmd", "score": 0.413853376001159}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "wrapfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "wrapfig-cmd", "score": 0.021170869458413965}, {"caption": "\\wrapfigure{}{}", "snippet": "\\wrapfigure{$1}{$2}", "meta": "wrapfig-cmd", "score": 0.0003295435821387379}], "epsfig": [{"caption": "\\epsfbox{}", "snippet": "\\epsfbox{$1}", "meta": "epsfig-cmd", "score": 0.00013712781345832882}, {"caption": "\\psfig{}", "snippet": "\\psfig{$1}", "meta": "epsfig-cmd", "score": 0.0017552046452897515}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "epsfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "epsfig-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "epsfig-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "epsfig-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "epsfig-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "epsfig-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "epsfig-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epsfig-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "epsfig-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epsfig-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "epsfig-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "epsfig-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "epsfig-cmd", "score": 0.004719094298848707}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "epsfig-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epsfig-cmd", "score": 0.008565354665444157}], "cite": [{"caption": "\\citeonline{}", "snippet": "\\citeonline{$1}", "meta": "cite-cmd", "score": 0.014277840409455324}, {"caption": "\\citenum{}", "snippet": "\\citenum{$1}", "meta": "cite-cmd", "score": 0.0027420903627423383}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "cite-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "cite-cmd", "score": 0.021170869458413965}, {"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "cite-cmd", "score": 0.04990693820960752}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "cite-cmd", "score": 2.341195220791228}], "lipsum": [{"caption": "\\setlipsumdefault{}", "snippet": "\\setlipsumdefault{$1}", "meta": "lipsum-cmd", "score": 0.00024112945034541791}, {"caption": "\\lipsum[]", "snippet": "\\lipsum[$1]", "meta": "lipsum-cmd", "score": 0.0300787181624191}], "algpseudocode": [{"caption": "\\algrenewcommand", "snippet": "\\algrenewcommand", "meta": "algpseudocode-cmd", "score": 0.0019861803661869416}, {"caption": "\\Statex", "snippet": "\\Statex", "meta": "algpseudocode-cmd", "score": 0.008622777195102994}, {"caption": "\\BState{}", "snippet": "\\BState{$1}", "meta": "algpseudocode-cmd", "score": 0.0008685861525307122}, {"caption": "\\BState", "snippet": "\\BState", "meta": "algpseudocode-cmd", "score": 0.0008685861525307122}, {"caption": "\\algloopdefx{}[][]{}", "snippet": "\\algloopdefx{$1}[$2][$3]{$4}", "meta": "algpseudocode-cmd", "score": 0.00025315185701145097}, {"caption": "\\algnewcommand", "snippet": "\\algnewcommand", "meta": "algpseudocode-cmd", "score": 0.0030209395012065327}, {"caption": "\\algnewcommand{}[]{}", "snippet": "\\algnewcommand{$1}[$2]{$3}", "meta": "algpseudocode-cmd", "score": 0.0030209395012065327}, {"caption": "\\Comment{}", "snippet": "\\Comment{$1}", "meta": "algpseudocode-cmd", "score": 0.005178604573219454}, {"caption": "\\algblockdefx{}{}[]", "snippet": "\\algblockdefx{$1}{$2}[$3]", "meta": "algpseudocode-cmd", "score": 0.00025315185701145097}, {"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}, {"caption": "\\algblock{}{}", "snippet": "\\algblock{$1}{$2}", "meta": "algpseudocode-cmd", "score": 0.0007916858220314837}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algpseudocode-cmd", "score": 0.008565354665444157}, {"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}, {"caption": "\\algtext{}", "snippet": "\\algtext{$1}", "meta": "algpseudocode-cmd", "score": 0.0005463612015579842}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algpseudocode-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algpseudocode-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algpseudocode-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algpseudocode-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algpseudocode-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algpseudocode-cmd", "score": 0.0018957469739775527}], "textpos": [{"caption": "\\textblockorigin{}{}", "snippet": "\\textblockorigin{$1}{$2}", "meta": "textpos-cmd", "score": 0.016306266556901577}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "textpos-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "textpos-cmd", "score": 0.2864294797053033}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "textpos-cmd", "score": 0.00037306820619479756}], "subfig": [{"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subfig-cmd", "score": 0.007192033516871399}, {"caption": "\\protect", "snippet": "\\protect", "meta": "subfig-cmd", "score": 0.0200686676229443}, {"caption": "\\subfloat[]{}", "snippet": "\\subfloat[$1]{$2}", "meta": "subfig-cmd", "score": 0.0286920437310672}, {"caption": "\\subfloat{}", "snippet": "\\subfloat{$1}", "meta": "subfig-cmd", "score": 0.0286920437310672}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "subfig-cmd", "score": 0.00037306820619479756}], "enumerate": [{"caption": "\\csname", "snippet": "\\csname", "meta": "enumerate-cmd", "score": 0.008565354665444157}, {"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": [{"caption": "\\csname", "snippet": "\\csname", "meta": "pdfpages-cmd", "score": 0.008565354665444157}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "pdfpages-cmd", "score": 0.07503475348393239}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pdfpages-cmd", "score": 1.4595731795525781}, {"caption": "\\includepdf[]{}", "snippet": "\\includepdf[$1]{$2}", "meta": "pdfpages-cmd", "score": 0.023931732745590156}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "pdfpages-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pdfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pdfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "pdfpages-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "pdfpages-cmd", "score": 0.028955796305270766}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pdfpages-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pdfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pdfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "pdfpages-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "pdfpages-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pdfpages-cmd", "score": 0.008565354665444157}, {"caption": "\\AddToShipoutPictureFG{}", "snippet": "\\AddToShipoutPictureFG{$1}", "meta": "pdfpages-cmd", "score": 0.000325977535138643}, {"caption": "\\AddToShipoutPictureBG{}", "snippet": "\\AddToShipoutPictureBG{$1}", "meta": "pdfpages-cmd", "score": 0.0008957666085644653}, {"caption": "\\AtPageUpperLeft{}", "snippet": "\\AtPageUpperLeft{$1}", "meta": "pdfpages-cmd", "score": 0.0003608141410278152}, {"caption": "\\LenToUnit{}", "snippet": "\\LenToUnit{$1}", "meta": "pdfpages-cmd", "score": 0.0007216282820556304}, {"caption": "\\AddToShipoutPicture{}", "snippet": "\\AddToShipoutPicture{$1}", "meta": "pdfpages-cmd", "score": 0.0017658629469099734}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "pdfpages-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "pdfpages-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "pdfpages-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "pdfpages-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "pdfpages-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "pdfpages-cmd", "score": 0.0018957469739775527}], "epstopdf": [{"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\AppendGraphicsExtensions{}", "snippet": "\\AppendGraphicsExtensions{$1}", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "epstopdf-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "epstopdf-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "epstopdf-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "epstopdf-cmd", "score": 0.021170869458413965}, {"caption": "\\epstopdfsetup{}", "snippet": "\\epstopdfsetup{$1}", "meta": "epstopdf-cmd", "score": 0.0009941134326203623}, {"caption": "\\epstopdfDeclareGraphicsRule{}{}{}{}", "snippet": "\\epstopdfDeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}, {"caption": "\\OutputFile", "snippet": "\\OutputFile", "meta": "epstopdf-cmd", "score": 7.723677706376668e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epstopdf-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "epstopdf-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epstopdf-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epstopdf-cmd", "score": 0.008565354665444157}], "lmodern": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "lmodern-cmd", "score": 0.0012870877747432935}, {"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "lmodern-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "lmodern-cmd", "score": 0.008427383388519996}], "pifont": [{"caption": "\\ding{}", "snippet": "\\ding{$1}", "meta": "pifont-cmd", "score": 0.009992300665793867}], "ragged2e": [{"caption": "\\justifying", "snippet": "\\justifying", "meta": "ragged2e-cmd", "score": 0.010373702256548788}, {"caption": "\\justifying{}", "snippet": "\\justifying{$1}", "meta": "ragged2e-cmd", "score": 0.010373702256548788}, {"caption": "\\RaggedRight", "snippet": "\\RaggedRight", "meta": "ragged2e-cmd", "score": 0.001021021782267457}, {"caption": "\\Centering", "snippet": "\\Centering", "meta": "ragged2e-cmd", "score": 0.00037395241488843035}, {"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "ragged2e-cmd", "score": 0.04598628699063736}], "rotating": [{"caption": "\\csname", "snippet": "\\csname", "meta": "rotating-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "rotating-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "rotating-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "rotating-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "rotating-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "rotating-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "rotating-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "rotating-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "rotating-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "rotating-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "rotating-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rotating-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "rotating-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "rotating-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "rotating-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "rotating-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "rotating-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "rotating-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "rotating-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "rotating-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "rotating-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "rotating-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "rotating-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "rotating-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "rotating-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "rotating-cmd", "score": 0.004719094298848707}], "xltxtra": [{"caption": "\\textsubscript{}", "snippet": "\\textsubscript{$1}", "meta": "xltxtra-cmd", "score": 0.058405875394131175}, {"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "xltxtra-cmd", "score": 0.05216393882408519}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xltxtra-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "xltxtra-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xltxtra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xltxtra-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xltxtra-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xltxtra-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xltxtra-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xltxtra-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xltxtra-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xltxtra-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xltxtra-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xltxtra-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xltxtra-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xltxtra-cmd", "score": 0.004649150613625593}, {"caption": "\\XeTeX", "snippet": "\\XeTeX", "meta": "xltxtra-cmd", "score": 0.0010635559050357936}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "xltxtra-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "xltxtra-cmd", "score": 0.02873756018238537}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "xltxtra-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "xltxtra-cmd", "score": 0.2334089308452787}, {"caption": "\\XeLaTeX", "snippet": "\\XeLaTeX", "meta": "xltxtra-cmd", "score": 0.002009786035379175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xltxtra-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xltxtra-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xltxtra-cmd", "score": 0.2864294797053033}], "marvosym": [{"caption": "\\Mundus", "snippet": "\\Mundus", "meta": "marvosym-cmd", "score": 0.0006349134235582933}, {"caption": "\\Telefon", "snippet": "\\Telefon", "meta": "marvosym-cmd", "score": 0.0003618274070138519}, {"caption": "\\Letter", "snippet": "\\Letter", "meta": "marvosym-cmd", "score": 0.0012281130571092198}, {"caption": "\\Mobilefone", "snippet": "\\Mobilefone", "meta": "marvosym-cmd", "score": 0.0005432037068220953}], "dcolumn": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "dcolumn-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "dcolumn-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "dcolumn-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "dcolumn-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "dcolumn-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "dcolumn-cmd", "score": 0.008565354665444157}, {"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}], "xspace": [{"caption": "\\xspace", "snippet": "\\xspace", "meta": "xspace-cmd", "score": 0.07560370351316588}], "xunicode": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xunicode-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xunicode-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xunicode-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xunicode-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xunicode-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xunicode-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xunicode-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xunicode-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xunicode-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xunicode-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xunicode-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xunicode-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xunicode-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xunicode-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xunicode-cmd", "score": 0.004719094298848707}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xunicode-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xunicode-cmd", "score": 0.008565354665444157}], "csquotes": [{"caption": "\\mkcitation", "snippet": "\\mkcitation", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\DeclareQuoteAlias{}{}", "snippet": "\\DeclareQuoteAlias{$1}{$2}", "meta": "csquotes-cmd", "score": 0.0004906235524176374}, {"caption": "\\quote{}", "snippet": "\\quote{$1}", "meta": "csquotes-cmd", "score": 0.030690393112264815}, {"caption": "\\quote", "snippet": "\\quote", "meta": "csquotes-cmd", "score": 0.030690393112264815}, {"caption": "\\setquotestyle[]{}", "snippet": "\\setquotestyle[$1]{$2}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\blockquote{}", "snippet": "\\blockquote{$1}", "meta": "csquotes-cmd", "score": 0.00023365626458085812}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "csquotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "csquotes-cmd", "score": 0.021170869458413965}, {"caption": "\\mkbegdispquote", "snippet": "\\mkbegdispquote", "meta": "csquotes-cmd", "score": 4.203362017075738e-05}, {"caption": "\\do", "snippet": "\\do", "meta": "csquotes-cmd", "score": 0.009278344180101056}, {"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}, {"caption": "\\ifpunctmark{}", "snippet": "\\ifpunctmark{$1}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}, {"caption": "\\endquote", "snippet": "\\endquote", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\par", "snippet": "\\par", "meta": "csquotes-cmd", "score": 0.413853376001159}, {"caption": "\\DeclareQuoteStyle[]{}", "snippet": "\\DeclareQuoteStyle[$1]{$2}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\SetBlockEnvironment{}", "snippet": "\\SetBlockEnvironment{$1}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "csquotes-cmd", "score": 0.008565354665444157}, {"caption": "\\MakeOuterQuote{}", "snippet": "\\MakeOuterQuote{$1}", "meta": "csquotes-cmd", "score": 0.0019170811203505262}, {"caption": "\\enquote{}", "snippet": "\\enquote{$1}", "meta": "csquotes-cmd", "score": 0.0077432730806830915}, {"caption": "\\SetCiteCommand{}", "snippet": "\\SetCiteCommand{$1}", "meta": "csquotes-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "csquotes-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "csquotes-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "csquotes-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "csquotes-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}, {"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}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "csquotes-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "csquotes-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "csquotes-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "csquotes-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "csquotes-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "csquotes-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "csquotes-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "csquotes-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "csquotes-cmd", "score": 0.00037306820619479756}], "xparse": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xparse-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xparse-cmd", "score": 0.2864294797053033}], "soul": [{"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}, {"caption": "\\sethlcolor{}", "snippet": "\\sethlcolor{$1}", "meta": "soul-cmd", "score": 0.01970230898277056}, {"caption": "\\st", "snippet": "\\st", "meta": "soul-cmd", "score": 0.004652662833362787}, {"caption": "\\st{}", "snippet": "\\st{$1}", "meta": "soul-cmd", "score": 0.004652662833362787}, {"caption": "\\def", "snippet": "\\def", "meta": "soul-cmd", "score": 0.21357759092476175}, {"caption": "\\hl{}", "snippet": "\\hl{$1}", "meta": "soul-cmd", "score": 0.03421486301062431}, {"caption": "\\sodef", "snippet": "\\sodef", "meta": "soul-cmd", "score": 0.0017045357696831268}, {"caption": "\\csname", "snippet": "\\csname", "meta": "soul-cmd", "score": 0.008565354665444157}, {"caption": "\\so", "snippet": "\\so", "meta": "soul-cmd", "score": 0.004308800134587786}, {"caption": "\\so{}", "snippet": "\\so{$1}", "meta": "soul-cmd", "score": 0.004308800134587786}], "comment": [{"caption": "\\specialcomment{}{}{}", "snippet": "\\specialcomment{$1}{$2}{$3}", "meta": "comment-cmd", "score": 9.120209837787948e-05}, {"caption": "\\includecomment{}", "snippet": "\\includecomment{$1}", "meta": "comment-cmd", "score": 8.21804444236254e-05}], "algorithm2e": [{"caption": "\\FuncSty{}", "snippet": "\\FuncSty{$1}", "meta": "algorithm2e-cmd", "score": 7.576875738934807e-05}, {"caption": "\\algorithmautorefname", "snippet": "\\algorithmautorefname", "meta": "algorithm2e-cmd", "score": 2.0085955839419213e-05}, {"caption": "\\SetAlgoNoLine", "snippet": "\\SetAlgoNoLine", "meta": "algorithm2e-cmd", "score": 0.00015722499147840545}, {"caption": "\\Indp", "snippet": "\\Indp", "meta": "algorithm2e-cmd", "score": 6.068942580823901e-05}, {"caption": "\\AlCapFnt", "snippet": "\\AlCapFnt", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}, {"caption": "\\LinesNumbered", "snippet": "\\LinesNumbered", "meta": "algorithm2e-cmd", "score": 0.000162125616653719}, {"caption": "\\SetAlFnt{}", "snippet": "\\SetAlFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024446198714390757}, {"caption": "\\SetKw{}{}", "snippet": "\\SetKw{$1}{$2}", "meta": "algorithm2e-cmd", "score": 9.292434841280213e-05}, {"caption": "\\RestyleAlgo{}", "snippet": "\\RestyleAlgo{$1}", "meta": "algorithm2e-cmd", "score": 0.00019243311960945823}, {"caption": "\\listofalgorithms", "snippet": "\\listofalgorithms", "meta": "algorithm2e-cmd", "score": 0.0012576983422794912}, {"caption": "\\IncMargin{}", "snippet": "\\IncMargin{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}, {"caption": "\\BlankLine", "snippet": "\\BlankLine", "meta": "algorithm2e-cmd", "score": 0.005049617303688214}, {"caption": "\\SetCommentSty{}", "snippet": "\\SetCommentSty{$1}", "meta": "algorithm2e-cmd", "score": 0.0001778112853266571}, {"caption": "\\SetAlgoNoEnd", "snippet": "\\SetAlgoNoEnd", "meta": "algorithm2e-cmd", "score": 0.00015722499147840545}, {"caption": "\\theAlgoLine{}", "snippet": "\\theAlgoLine{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"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}, {"caption": "\\AlCapNameFnt", "snippet": "\\AlCapNameFnt", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}, {"caption": "\\SetAlgoSkip{}", "snippet": "\\SetAlgoSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.00017454032258926576}, {"caption": "\\SetKwFunction{}{}", "snippet": "\\SetKwFunction{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0015332307832994817}, {"caption": "\\nllabel{}", "snippet": "\\nllabel{$1}", "meta": "algorithm2e-cmd", "score": 0.0001844460347791443}, {"caption": "\\SetAlgoInsideSkip{}", "snippet": "\\SetAlgoInsideSkip{$1}", "meta": "algorithm2e-cmd", "score": 4.5812360816321294e-05}, {"caption": "\\DataSty{}", "snippet": "\\DataSty{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"caption": "\\SetKwInOut{}{}", "snippet": "\\SetKwInOut{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0017021978326807814}, {"caption": "\\SetAlCapFnt{}", "snippet": "\\SetAlCapFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}, {"caption": "\\CommentSty{}", "snippet": "\\CommentSty{$1}", "meta": "algorithm2e-cmd", "score": 0.0001111448631633176}, {"caption": "\\SetAlCapHSkip{}", "snippet": "\\SetAlCapHSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}, {"caption": "\\renewcommand{}{}", "snippet": "\\renewcommand{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.3267437011085663}, {"caption": "\\renewcommand", "snippet": "\\renewcommand", "meta": "algorithm2e-cmd", "score": 0.3267437011085663}, {"caption": "\\algorithmcfname", "snippet": "\\algorithmcfname", "meta": "algorithm2e-cmd", "score": 0.0024445413067013134}, {"caption": "\\SetKwIF{}{}{}{}{}{}{}{}", "snippet": "\\SetKwIF{$1}{$2}{$3}{$4}{$5}{$6}{$7}{$8}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"caption": "\\SetAlgoCaptionSeparator{}", "snippet": "\\SetAlgoCaptionSeparator{$1}", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"caption": "\\AlCapSty{}", "snippet": "\\AlCapSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}, {"caption": "\\ArgSty{}", "snippet": "\\ArgSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}, {"caption": "\\AlCapNameSty{}", "snippet": "\\AlCapNameSty{$1}", "meta": "algorithm2e-cmd", "score": 3.0307502955739227e-05}, {"caption": "\\SetKwData{}{}", "snippet": "\\SetKwData{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.00235652682860263}, {"caption": "\\listalgorithmcfname", "snippet": "\\listalgorithmcfname", "meta": "algorithm2e-cmd", "score": 1.5075186740106946e-05}, {"caption": "\\Indm", "snippet": "\\Indm", "meta": "algorithm2e-cmd", "score": 6.068942580823901e-05}, {"caption": "\\SetAlCapNameFnt{}", "snippet": "\\SetAlCapNameFnt{$1}", "meta": "algorithm2e-cmd", "score": 0.0024294661199612063}, {"caption": "\\DontPrintSemicolon", "snippet": "\\DontPrintSemicolon", "meta": "algorithm2e-cmd", "score": 0.001062087490197768}, {"caption": "\\SetAlgoLined", "snippet": "\\SetAlgoLined", "meta": "algorithm2e-cmd", "score": 0.0017151361342403852}, {"caption": "\\SetAlCapSkip{}", "snippet": "\\SetAlCapSkip{$1}", "meta": "algorithm2e-cmd", "score": 0.0006213942502400296}, {"caption": "\\LinesNotNumbered", "snippet": "\\LinesNotNumbered", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"caption": "\\SetKwProg{}{}{}{}", "snippet": "\\SetKwProg{$1}{$2}{$3}{$4}", "meta": "algorithm2e-cmd", "score": 0.0008518783278391971}, {"caption": "\\SetAlgoVlined", "snippet": "\\SetAlgoVlined", "meta": "algorithm2e-cmd", "score": 1.5153751477869614e-05}, {"caption": "\\SetKwRepeat{}{}{}", "snippet": "\\SetKwRepeat{$1}{$2}{$3}", "meta": "algorithm2e-cmd", "score": 6.110202388233705e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algorithm2e-cmd", "score": 0.008565354665444157}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "algorithm2e-cmd", "score": 0.422097569591803}, {"caption": "\\SetKwFor{}{}{}{}", "snippet": "\\SetKwFor{$1}{$2}{$3}{$4}", "meta": "algorithm2e-cmd", "score": 0.00010699539949594301}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithm2e-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithm2e-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithm2e-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithm2e-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithm2e-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithm2e-cmd", "score": 0.0018957469739775527}, {"caption": "\\xspace", "snippet": "\\xspace", "meta": "algorithm2e-cmd", "score": 0.07560370351316588}], "tocbibind": [{"caption": "\\contentsname", "snippet": "\\contentsname", "meta": "tocbibind-cmd", "score": 0.010205180337548728}, {"caption": "\\contentsname{}", "snippet": "\\contentsname{$1}", "meta": "tocbibind-cmd", "score": 0.010205180337548728}, {"caption": "\\tocchapter", "snippet": "\\tocchapter", "meta": "tocbibind-cmd", "score": 0.00016023188758771694}, {"caption": "\\indexname", "snippet": "\\indexname", "meta": "tocbibind-cmd", "score": 0.0007544109314450072}, {"caption": "\\listoffigures", "snippet": "\\listoffigures", "meta": "tocbibind-cmd", "score": 0.03447318897846567}, {"caption": "\\tocfile{}{}", "snippet": "\\tocfile{$1}{$2}", "meta": "tocbibind-cmd", "score": 0.00016023188758771694}, {"caption": "\\tocbibname", "snippet": "\\tocbibname", "meta": "tocbibind-cmd", "score": 0.0020762574479507175}, {"caption": "\\settocbibname{}", "snippet": "\\settocbibname{$1}", "meta": "tocbibind-cmd", "score": 0.00010668677119599426}, {"caption": "\\listoftables", "snippet": "\\listoftables", "meta": "tocbibind-cmd", "score": 0.02104656820469027}, {"caption": "\\tableofcontents", "snippet": "\\tableofcontents", "meta": "tocbibind-cmd", "score": 0.13360595130994957}, {"caption": "\\listfigurename", "snippet": "\\listfigurename", "meta": "tocbibind-cmd", "score": 0.0034407237779350256}], "pgfplots": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplots-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfplots-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfplots-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfplots-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfplots-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfplots-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfplots-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfplots-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplots-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfplots-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfplots-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfplots-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfplots-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfplots-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfplots-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfplots-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfplots-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfplots-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplots-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfplots-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfplots-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfplots-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfplots-cmd", "score": 0.2864294797053033}], "lastpage": [{"caption": "\\string", "snippet": "\\string", "meta": "lastpage-cmd", "score": 0.001042697111754002}], "graphics": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "graphics-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "graphics-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "graphics-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "graphics-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "graphics-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "graphics-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "graphics-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "graphics-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "graphics-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphics-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "graphics-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphics-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphics-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphics-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "graphics-cmd", "score": 0.004649150613625593}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphics-cmd", "score": 0.008565354665444157}], "algorithmic": [{"caption": "\\REPEAT", "snippet": "\\REPEAT", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}, {"caption": "\\ENDIF", "snippet": "\\ENDIF", "meta": "algorithmic-cmd", "score": 0.003585213685098552}, {"caption": "\\algorithmicwhile", "snippet": "\\algorithmicwhile", "meta": "algorithmic-cmd", "score": 0.0005769483780443573}, {"caption": "\\algorithmicwhile{}", "snippet": "\\algorithmicwhile{$1}", "meta": "algorithmic-cmd", "score": 0.0005769483780443573}, {"caption": "\\FOR{}", "snippet": "\\FOR{$1}", "meta": "algorithmic-cmd", "score": 0.004074774218819945}, {"caption": "\\algorithmicif", "snippet": "\\algorithmicif", "meta": "algorithmic-cmd", "score": 0.00039654130753044966}, {"caption": "\\algorithmicif{}", "snippet": "\\algorithmicif{$1}", "meta": "algorithmic-cmd", "score": 0.00039654130753044966}, {"caption": "\\ENDFOR", "snippet": "\\ENDFOR", "meta": "algorithmic-cmd", "score": 0.004428141530092572}, {"caption": "\\UNTIL", "snippet": "\\UNTIL", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}, {"caption": "\\UNTIL{}", "snippet": "\\UNTIL{$1}", "meta": "algorithmic-cmd", "score": 0.0004816110638193742}, {"caption": "\\IF{}", "snippet": "\\IF{$1}", "meta": "algorithmic-cmd", "score": 0.0036985887706967417}, {"caption": "\\ENSURE", "snippet": "\\ENSURE", "meta": "algorithmic-cmd", "score": 0.0013188761425395954}, {"caption": "\\algorithmiccomment", "snippet": "\\algorithmiccomment", "meta": "algorithmic-cmd", "score": 0.00021737766481978388}, {"caption": "\\ENDWHILE", "snippet": "\\ENDWHILE", "meta": "algorithmic-cmd", "score": 0.00047037943460091465}, {"caption": "\\algorithmicend", "snippet": "\\algorithmicend", "meta": "algorithmic-cmd", "score": 0.0011128218085672747}, {"caption": "\\algorithmicend{}", "snippet": "\\algorithmicend{$1}", "meta": "algorithmic-cmd", "score": 0.0011128218085672747}, {"caption": "\\algorithmicrequire", "snippet": "\\algorithmicrequire", "meta": "algorithmic-cmd", "score": 0.004751598472180266}, {"caption": "\\algorithmicdo", "snippet": "\\algorithmicdo", "meta": "algorithmic-cmd", "score": 0.0005655570358533174}, {"caption": "\\algorithmicdo{}", "snippet": "\\algorithmicdo{$1}", "meta": "algorithmic-cmd", "score": 0.0005655570358533174}, {"caption": "\\algorithmicfor", "snippet": "\\algorithmicfor", "meta": "algorithmic-cmd", "score": 0.0005681785898943757}, {"caption": "\\algorithmicfor{}", "snippet": "\\algorithmicfor{$1}", "meta": "algorithmic-cmd", "score": 0.0005681785898943757}, {"caption": "\\RETURN", "snippet": "\\RETURN", "meta": "algorithmic-cmd", "score": 0.0013054907995767408}, {"caption": "\\algorithmicand", "snippet": "\\algorithmicand", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}, {"caption": "\\algsetup{}", "snippet": "\\algsetup{$1}", "meta": "algorithmic-cmd", "score": 0.00012872796177294446}, {"caption": "\\algorithmicreturn{}", "snippet": "\\algorithmicreturn{$1}", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\algorithmicreturn", "snippet": "\\algorithmicreturn", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\algorithmicforall{}", "snippet": "\\algorithmicforall{$1}", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\algorithmicforall", "snippet": "\\algorithmicforall", "meta": "algorithmic-cmd", "score": 0.00022490402516652368}, {"caption": "\\COMMENT", "snippet": "\\COMMENT", "meta": "algorithmic-cmd", "score": 0.00025669572555354604}, {"caption": "\\COMMENT{}", "snippet": "\\COMMENT{$1}", "meta": "algorithmic-cmd", "score": 0.00025669572555354604}, {"caption": "\\REQUIRE", "snippet": "\\REQUIRE", "meta": "algorithmic-cmd", "score": 0.001870681168192269}, {"caption": "\\algorithmicor", "snippet": "\\algorithmicor", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}, {"caption": "\\ELSE", "snippet": "\\ELSE", "meta": "algorithmic-cmd", "score": 0.0007599864146830139}, {"caption": "\\STATE", "snippet": "\\STATE", "meta": "algorithmic-cmd", "score": 0.0266684860947573}, {"caption": "\\WHILE{}", "snippet": "\\WHILE{$1}", "meta": "algorithmic-cmd", "score": 0.00047037943460091465}, {"caption": "\\ELSIF{}", "snippet": "\\ELSIF{$1}", "meta": "algorithmic-cmd", "score": 0.0001991613148371481}, {"caption": "\\FALSE", "snippet": "\\FALSE", "meta": "algorithmic-cmd", "score": 3.34222699937868e-05}, {"caption": "\\AND", "snippet": "\\AND", "meta": "algorithmic-cmd", "score": 6.401730289932545e-05}, {"caption": "\\algorithmicensure", "snippet": "\\algorithmicensure", "meta": "algorithmic-cmd", "score": 0.003439482525198322}, {"caption": "\\OR", "snippet": "\\OR", "meta": "algorithmic-cmd", "score": 6.401730289932545e-05}, {"caption": "\\algorithmicrepeat", "snippet": "\\algorithmicrepeat", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}, {"caption": "\\TRUE", "snippet": "\\TRUE", "meta": "algorithmic-cmd", "score": 0.0001336890799751472}, {"caption": "\\FORALL{}", "snippet": "\\FORALL{$1}", "meta": "algorithmic-cmd", "score": 0.0003533673112726266}, {"caption": "\\algorithmicthen{}", "snippet": "\\algorithmicthen{$1}", "meta": "algorithmic-cmd", "score": 0.00032476571672371697}, {"caption": "\\algorithmicthen", "snippet": "\\algorithmicthen", "meta": "algorithmic-cmd", "score": 0.00032476571672371697}, {"caption": "\\algorithmicuntil", "snippet": "\\algorithmicuntil", "meta": "algorithmic-cmd", "score": 5.326674280259771e-05}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithmic-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithmic-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithmic-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithmic-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithmic-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithmic-cmd", "score": 0.0018957469739775527}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "algorithmic-cmd", "score": 0.00037306820619479756}], "lineno": [{"caption": "\\pagewiselinenumbers", "snippet": "\\pagewiselinenumbers", "meta": "lineno-cmd", "score": 0.00016870831850106035}, {"caption": "\\linenomath", "snippet": "\\linenomath", "meta": "lineno-cmd", "score": 1.4517338420208715e-05}, {"caption": "\\linenumberfont{}", "snippet": "\\linenumberfont{$1}", "meta": "lineno-cmd", "score": 0.0001811784338695797}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "lineno-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "lineno-cmd", "score": 0.021170869458413965}, {"caption": "\\endlinenomath", "snippet": "\\endlinenomath", "meta": "lineno-cmd", "score": 1.4517338420208715e-05}, {"caption": "\\nolinenumbers", "snippet": "\\nolinenumbers", "meta": "lineno-cmd", "score": 0.0009805246614299932}, {"caption": "\\path", "snippet": "\\path", "meta": "lineno-cmd", "score": 0.028200474217322108}, {"caption": "\\path[]", "snippet": "\\path[$1]", "meta": "lineno-cmd", "score": 0.028200474217322108}, {"caption": "\\path{}", "snippet": "\\path{$1}", "meta": "lineno-cmd", "score": 0.028200474217322108}, {"caption": "\\filedate{}", "snippet": "\\filedate{$1}", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\filedate", "snippet": "\\filedate", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\linenumbers", "snippet": "\\linenumbers", "meta": "lineno-cmd", "score": 0.004687680659497865}, {"caption": "\\modulolinenumbers[]", "snippet": "\\modulolinenumbers[$1]", "meta": "lineno-cmd", "score": 0.0027194991933605197}, {"caption": "\\fileversion{}", "snippet": "\\fileversion{$1}", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\fileversion", "snippet": "\\fileversion", "meta": "lineno-cmd", "score": 0.000578146635331119}, {"caption": "\\csname", "snippet": "\\csname", "meta": "lineno-cmd", "score": 0.008565354665444157}], "mathptmx": [{"caption": "\\rmdefault", "snippet": "\\rmdefault", "meta": "mathptmx-cmd", "score": 0.0012870877747432935}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "mathptmx-cmd", "score": 0.04318078602869565}, {"caption": "\\Big", "snippet": "\\Big", "meta": "mathptmx-cmd", "score": 0.050370758781422345}, {"caption": "\\big", "snippet": "\\big", "meta": "mathptmx-cmd", "score": 0.05613164277964739}], "todonotes": [{"caption": "\\missingfigure[]{}", "snippet": "\\missingfigure[$1]{$2}", "meta": "todonotes-cmd", "score": 0.001558719179721163}, {"caption": "\\missingfigure", "snippet": "\\missingfigure", "meta": "todonotes-cmd", "score": 0.001558719179721163}, {"caption": "\\todototoc", "snippet": "\\todototoc", "meta": "todonotes-cmd", "score": 0.000325977535138643}, {"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}, {"caption": "\\listoftodos", "snippet": "\\listoftodos", "meta": "todonotes-cmd", "score": 0.0005325975940754609}, {"caption": "\\listoftodos[]", "snippet": "\\listoftodos[$1]", "meta": "todonotes-cmd", "score": 0.0005325975940754609}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "todonotes-cmd", "score": 0.0174633138331273}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "todonotes-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "todonotes-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "todonotes-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "todonotes-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "todonotes-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "todonotes-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "todonotes-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "todonotes-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "todonotes-cmd", "score": 0.004649150613625593}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "todonotes-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "todonotes-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "todonotes-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "todonotes-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "todonotes-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "todonotes-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "todonotes-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "todonotes-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "todonotes-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "todonotes-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "todonotes-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "todonotes-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "todonotes-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "todonotes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "todonotes-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "todonotes-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "todonotes-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "todonotes-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "todonotes-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "todonotes-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "todonotes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "todonotes-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "todonotes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "todonotes-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "todonotes-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "todonotes-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "todonotes-cmd", "score": 0.2864294797053033}], "ulem": [{"caption": "\\sout{}", "snippet": "\\sout{$1}", "meta": "ulem-cmd", "score": 0.0010443313503631364}, {"caption": "\\sout", "snippet": "\\sout", "meta": "ulem-cmd", "score": 0.0010443313503631364}, {"caption": "\\MakeRobust", "snippet": "\\MakeRobust", "meta": "ulem-cmd", "score": 3.140504277052775e-05}, {"caption": "\\hss", "snippet": "\\hss", "meta": "ulem-cmd", "score": 0.0020627882815078768}, {"caption": "\\uline{}", "snippet": "\\uline{$1}", "meta": "ulem-cmd", "score": 0.005956273219192909}, {"caption": "\\uline", "snippet": "\\uline", "meta": "ulem-cmd", "score": 0.005956273219192909}, {"caption": "\\markoverwith{}", "snippet": "\\markoverwith{$1}", "meta": "ulem-cmd", "score": 0.0004888431085285657}, {"caption": "\\iff", "snippet": "\\iff", "meta": "ulem-cmd", "score": 0.004209937150980285}, {"caption": "\\hfill", "snippet": "\\hfill", "meta": "ulem-cmd", "score": 0.2058248088519886}, {"caption": "\\ULon", "snippet": "\\ULon", "meta": "ulem-cmd", "score": 0.0004888431085285657}, {"caption": "\\normalem", "snippet": "\\normalem", "meta": "ulem-cmd", "score": 0.00015564484081028078}, {"caption": "\\useunder{}{}{}", "snippet": "\\useunder{$1}{$2}{$3}", "meta": "ulem-cmd", "score": 0.0013185833851097916}, {"caption": "\\hfil", "snippet": "\\hfil", "meta": "ulem-cmd", "score": 0.006880789969115855}, {"caption": "\\sout{}", "snippet": "\\sout{$1}", "meta": "ulem-cmd", "score": 0.0010443313503631364}, {"caption": "\\sout", "snippet": "\\sout", "meta": "ulem-cmd", "score": 0.0010443313503631364}, {"caption": "\\MakeRobust", "snippet": "\\MakeRobust", "meta": "ulem-cmd", "score": 3.140504277052775e-05}, {"caption": "\\hss", "snippet": "\\hss", "meta": "ulem-cmd", "score": 0.0020627882815078768}, {"caption": "\\uline{}", "snippet": "\\uline{$1}", "meta": "ulem-cmd", "score": 0.005956273219192909}, {"caption": "\\uline", "snippet": "\\uline", "meta": "ulem-cmd", "score": 0.005956273219192909}, {"caption": "\\markoverwith{}", "snippet": "\\markoverwith{$1}", "meta": "ulem-cmd", "score": 0.0004888431085285657}, {"caption": "\\iff", "snippet": "\\iff", "meta": "ulem-cmd", "score": 0.004209937150980285}, {"caption": "\\hfill", "snippet": "\\hfill", "meta": "ulem-cmd", "score": 0.2058248088519886}, {"caption": "\\ULon", "snippet": "\\ULon", "meta": "ulem-cmd", "score": 0.0004888431085285657}, {"caption": "\\normalem", "snippet": "\\normalem", "meta": "ulem-cmd", "score": 0.00015564484081028078}, {"caption": "\\useunder{}{}{}", "snippet": "\\useunder{$1}{$2}{$3}", "meta": "ulem-cmd", "score": 0.0013185833851097916}, {"caption": "\\hfil", "snippet": "\\hfil", "meta": "ulem-cmd", "score": 0.006880789969115855}], "gensymb": [{"caption": "\\degree", "snippet": "\\degree", "meta": "gensymb-cmd", "score": 0.044752043138360405}, {"caption": "\\ohm", "snippet": "\\ohm", "meta": "gensymb-cmd", "score": 0.0038146685721293138}, {"caption": "\\micro", "snippet": "\\micro", "meta": "gensymb-cmd", "score": 0.011051971930487929}, {"caption": "\\celsius", "snippet": "\\celsius", "meta": "gensymb-cmd", "score": 0.0010806983851157788}], "siunitx": [{"caption": "\\DeclareSIUnit{}{}", "snippet": "\\DeclareSIUnit{$1}{$2}", "meta": "siunitx-cmd", "score": 0.00017911905960739648}, {"caption": "\\DeclareSIUnit", "snippet": "\\DeclareSIUnit", "meta": "siunitx-cmd", "score": 0.00017911905960739648}, {"caption": "\\si{}", "snippet": "\\si{$1}", "meta": "siunitx-cmd", "score": 0.015042996547458706}, {"caption": "\\num{}", "snippet": "\\num{$1}", "meta": "siunitx-cmd", "score": 0.0005077454796577224}, {"caption": "\\num[]{}", "snippet": "\\num[$1]{$2}", "meta": "siunitx-cmd", "score": 0.0005077454796577224}, {"caption": "\\ang{}", "snippet": "\\ang{$1}", "meta": "siunitx-cmd", "score": 0.00026216419341458844}, {"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}, {"caption": "\\SIlist{}{}", "snippet": "\\SIlist{$1}{$2}", "meta": "siunitx-cmd", "score": 2.5005836362206937e-05}, {"caption": "\\SI{}{}", "snippet": "\\SI{$1}{$2}", "meta": "siunitx-cmd", "score": 0.04233098901537305}, {"caption": "\\sisetup{}", "snippet": "\\sisetup{$1}", "meta": "siunitx-cmd", "score": 0.0011875061630332172}, {"caption": "\\do", "snippet": "\\do", "meta": "siunitx-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "siunitx-cmd", "score": 0.0063276692758974925}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "siunitx-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "siunitx-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "siunitx-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "siunitx-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "siunitx-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "siunitx-cmd", "score": 0.008565354665444157}, {"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}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "siunitx-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "siunitx-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "siunitx-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "siunitx-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "siunitx-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "siunitx-cmd", "score": 0.2864294797053033}], "adjustbox": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "adjustbox-cmd", "score": 0.354445763583904}, {"caption": "\\adjustbox{}{}", "snippet": "\\adjustbox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.002008185536556013}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "adjustbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "adjustbox-cmd", "score": 0.021170869458413965}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "adjustbox-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "adjustbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "adjustbox-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "adjustbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "adjustbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "adjustbox-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "adjustbox-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "adjustbox-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "adjustbox-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "adjustbox-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "adjustbox-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "adjustbox-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "adjustbox-cmd", "score": 0.004649150613625593}], "moderncvcompatibility": [{"caption": "\\cvitem{}{}", "snippet": "\\cvitem{$1}{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.19605476980016281}, {"caption": "\\cvlanguage{}{}{}", "snippet": "\\cvlanguage{$1}{$2}{$3}", "meta": "moderncvcompatibility-cmd", "score": 0.00832363305853651}, {"caption": "\\moderncvtheme[]{}", "snippet": "\\moderncvtheme[$1]{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.002355125248305291}, {"caption": "\\moderncvtheme{}", "snippet": "\\moderncvtheme{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.002355125248305291}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "moderncvcompatibility-cmd", "score": 0.7504160124360846}, {"caption": "\\phone[]{}", "snippet": "\\phone[$1]{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.09602264063533228}, {"caption": "\\moderncvstyle{}", "snippet": "\\moderncvstyle{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.09378844125415692}, {"caption": "\\firstname{}", "snippet": "\\firstname{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.0070031590875754435}, {"caption": "\\cvline{}{}", "snippet": "\\cvline{$1}{$2}", "meta": "moderncvcompatibility-cmd", "score": 0.007378490468121007}, {"caption": "\\mobile{}", "snippet": "\\mobile{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.022907406369946367}, {"caption": "\\familyname{}", "snippet": "\\familyname{$1}", "meta": "moderncvcompatibility-cmd", "score": 0.0070031590875754435}, {"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "moderncvcompatibility-cmd", "score": 3.0952612541683835}], "helvet": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "helvet-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "helvet-cmd", "score": 0.008427383388519996}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "helvet-cmd", "score": 0.00037306820619479756}], "placeins": [{"caption": "\\FloatBarrier", "snippet": "\\FloatBarrier", "meta": "placeins-cmd", "score": 0.015841933780270347}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "placeins-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "placeins-cmd", "score": 0.021170869458413965}], "colortbl": [{"caption": "\\rowcolor{}", "snippet": "\\rowcolor{$1}", "meta": "colortbl-cmd", "score": 0.05564476491638024}, {"caption": "\\rowcolor[]{}", "snippet": "\\rowcolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.05564476491638024}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "colortbl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "colortbl-cmd", "score": 0.021170869458413965}, {"caption": "\\arrayrulecolor{}", "snippet": "\\arrayrulecolor{$1}", "meta": "colortbl-cmd", "score": 0.008538501902241319}, {"caption": "\\arrayrulecolor[]{}", "snippet": "\\arrayrulecolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.008538501902241319}, {"caption": "\\hline", "snippet": "\\hline", "meta": "colortbl-cmd", "score": 1.3209538327406387}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.5473606021405326}, {"caption": "\\cellcolor[]{}", "snippet": "\\cellcolor[$1]{$2}", "meta": "colortbl-cmd", "score": 0.11068275858524645}, {"caption": "\\cellcolor{}", "snippet": "\\cellcolor{$1}", "meta": "colortbl-cmd", "score": 0.11068275858524645}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "colortbl-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "colortbl-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "colortbl-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "colortbl-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "colortbl-cmd", "score": 0.008565354665444157}, {"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}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "colortbl-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "colortbl-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "colortbl-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "colortbl-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "colortbl-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "colortbl-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "colortbl-cmd", "score": 0.2864294797053033}], "appendix": [{"caption": "\\appendixpagename", "snippet": "\\appendixpagename", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\appendixpagename{}", "snippet": "\\appendixpagename{$1}", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\thechapter", "snippet": "\\thechapter", "meta": "appendix-cmd", "score": 0.011821300392639589}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "appendix-cmd", "score": 0.005008938879210868}, {"caption": "\\thesubsection", "snippet": "\\thesubsection", "meta": "appendix-cmd", "score": 0.004364729212023423}, {"caption": "\\appendixname", "snippet": "\\appendixname", "meta": "appendix-cmd", "score": 0.006491295958752496}, {"caption": "\\appendixname{}", "snippet": "\\appendixname{$1}", "meta": "appendix-cmd", "score": 0.006491295958752496}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "appendix-cmd", "score": 0.07503475348393239}, {"caption": "\\thesection", "snippet": "\\thesection", "meta": "appendix-cmd", "score": 0.011068945893347528}, {"caption": "\\thesection{}", "snippet": "\\thesection{$1}", "meta": "appendix-cmd", "score": 0.011068945893347528}, {"caption": "\\appendixpage", "snippet": "\\appendixpage", "meta": "appendix-cmd", "score": 0.0003193786370376004}, {"caption": "\\appendixpage{}", "snippet": "\\appendixpage{$1}", "meta": "appendix-cmd", "score": 0.0003193786370376004}, {"caption": "\\appendixtocname", "snippet": "\\appendixtocname", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\appendixtocname{}", "snippet": "\\appendixtocname{$1}", "meta": "appendix-cmd", "score": 0.0005082989114039268}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "appendix-cmd", "score": 0.0174633138331273}], "supertabular": [{"caption": "\\tabletail{}", "snippet": "\\tabletail{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}, {"caption": "\\tablehead{}", "snippet": "\\tablehead{$1}", "meta": "supertabular-cmd", "score": 0.002940437317353234}, {"caption": "\\tablelasttail{}", "snippet": "\\tablelasttail{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}, {"caption": "\\tablefirsthead{}", "snippet": "\\tablefirsthead{$1}", "meta": "supertabular-cmd", "score": 0.00284734590996941}], "makeidx": [{"caption": "\\printindex", "snippet": "\\printindex", "meta": "makeidx-cmd", "score": 0.004417016910870522}], "framed": [{"caption": "\\fbox{}", "snippet": "\\fbox{$1}", "meta": "framed-cmd", "score": 0.020865450075016792}], "layaureo": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "layaureo-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "layaureo-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "layaureo-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "layaureo-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "layaureo-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "layaureo-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "layaureo-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "layaureo-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "layaureo-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "layaureo-cmd", "score": 0.028955796305270766}, {"caption": "\\savegeometry{}", "snippet": "\\savegeometry{$1}", "meta": "layaureo-cmd", "score": 6.461638865465447e-05}, {"caption": "\\loadgeometry{}", "snippet": "\\loadgeometry{$1}", "meta": "layaureo-cmd", "score": 6.461638865465447e-05}, {"caption": "\\newgeometry{}", "snippet": "\\newgeometry{$1}", "meta": "layaureo-cmd", "score": 0.0025977479207639352}, {"caption": "\\geometry{}", "snippet": "\\geometry{$1}", "meta": "layaureo-cmd", "score": 0.046218420429973615}, {"caption": "\\csname", "snippet": "\\csname", "meta": "layaureo-cmd", "score": 0.008565354665444157}, {"caption": "\\restoregeometry", "snippet": "\\restoregeometry", "meta": "layaureo-cmd", "score": 0.0007546303842143648}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "layaureo-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "layaureo-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "layaureo-cmd", "score": 0.002958865219480927}], "keyval": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "keyval-cmd", "score": 0.00037306820619479756}], "physics": [{"caption": "\\sinh", "snippet": "\\sinh", "meta": "physics-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "physics-cmd", "score": 0.0006435164702005918}, {"caption": "\\curl{}", "snippet": "\\curl{$1}", "meta": "physics-cmd", "score": 0.001039136354388696}, {"caption": "\\curl", "snippet": "\\curl", "meta": "physics-cmd", "score": 0.001039136354388696}, {"caption": "\\dd", "snippet": "\\dd", "meta": "physics-cmd", "score": 0.0049652819784537965}, {"caption": "\\expval{}", "snippet": "\\expval{$1}", "meta": "physics-cmd", "score": 0.0006729185293892782}, {"caption": "\\exp", "snippet": "\\exp", "meta": "physics-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "physics-cmd", "score": 0.02404262443651467}, {"caption": "\\mqty", "snippet": "\\mqty", "meta": "physics-cmd", "score": 0.0002048562866401335}, {"caption": "\\order{}", "snippet": "\\order{$1}", "meta": "physics-cmd", "score": 0.00019980403788140113}, {"caption": "\\order", "snippet": "\\order", "meta": "physics-cmd", "score": 0.00019980403788140113}, {"caption": "\\abs{}", "snippet": "\\abs{$1}", "meta": "physics-cmd", "score": 0.016268920166928613}, {"caption": "\\cos", "snippet": "\\cos", "meta": "physics-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "physics-cmd", "score": 0.050370402546134785}, {"caption": "\\dv{}{}", "snippet": "\\dv{$1}{$2}", "meta": "physics-cmd", "score": 0.005139463745615663}, {"caption": "\\dv[]{}{}", "snippet": "\\dv[$1]{$2}{$3}", "meta": "physics-cmd", "score": 0.005139463745615663}, {"caption": "\\eval{}", "snippet": "\\eval{$1}", "meta": "physics-cmd", "score": 0.00021313621676565867}, {"caption": "\\eval", "snippet": "\\eval", "meta": "physics-cmd", "score": 0.00021313621676565867}, {"caption": "\\eval[]{}", "snippet": "\\eval[$1]{$2}", "meta": "physics-cmd", "score": 0.00021313621676565867}, {"caption": "\\tan", "snippet": "\\tan", "meta": "physics-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "physics-cmd", "score": 0.005640718203101287}, {"caption": "\\ket{}", "snippet": "\\ket{$1}", "meta": "physics-cmd", "score": 0.0326276280979336}, {"caption": "\\mel{}{}{}", "snippet": "\\mel{$1}{$2}{$3}", "meta": "physics-cmd", "score": 0.001123156900573353}, {"caption": "\\ip", "snippet": "\\ip", "meta": "physics-cmd", "score": 0.0008534664860896849}, {"caption": "\\ip{}{}", "snippet": "\\ip{$1}{$2}", "meta": "physics-cmd", "score": 0.0008534664860896849}, {"caption": "\\ip[]{}", "snippet": "\\ip[$1]{$2}", "meta": "physics-cmd", "score": 0.0008534664860896849}, {"caption": "\\Im", "snippet": "\\Im", "meta": "physics-cmd", "score": 0.0013451768070134808}, {"caption": "\\Im{}", "snippet": "\\Im{$1}", "meta": "physics-cmd", "score": 0.0013451768070134808}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "physics-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "physics-cmd", "score": 0.0008896391580266903}, {"caption": "\\comm{}{}", "snippet": "\\comm{$1}{$2}", "meta": "physics-cmd", "score": 0.0012026610554672049}, {"caption": "\\qty", "snippet": "\\qty", "meta": "physics-cmd", "score": 0.0017737618641299655}, {"caption": "\\qty{}", "snippet": "\\qty{$1}", "meta": "physics-cmd", "score": 0.0017737618641299655}, {"caption": "\\Tr", "snippet": "\\Tr", "meta": "physics-cmd", "score": 0.004615158124783136}, {"caption": "\\Tr{}", "snippet": "\\Tr{$1}", "meta": "physics-cmd", "score": 0.004615158124783136}, {"caption": "\\bra{}", "snippet": "\\bra{$1}", "meta": "physics-cmd", "score": 0.005609763332417241}, {"caption": "\\poissonbracket{}{}", "snippet": "\\poissonbracket{$1}{$2}", "meta": "physics-cmd", "score": 2.2761809626681494e-05}, {"caption": "\\pmat{}", "snippet": "\\pmat{$1}", "meta": "physics-cmd", "score": 0.00010356789132354732}, {"caption": "\\norm{}", "snippet": "\\norm{$1}", "meta": "physics-cmd", "score": 0.006576610603906938}, {"caption": "\\cot", "snippet": "\\cot", "meta": "physics-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "physics-cmd", "score": 0.0003640644365701238}, {"caption": "\\cross", "snippet": "\\cross", "meta": "physics-cmd", "score": 0.0005412940211650938}, {"caption": "\\log", "snippet": "\\log", "meta": "physics-cmd", "score": 0.048131780413380156}, {"caption": "\\dmat{}", "snippet": "\\dmat{$1}", "meta": "physics-cmd", "score": 2.2761809626681494e-05}, {"caption": "\\Re", "snippet": "\\Re", "meta": "physics-cmd", "score": 0.0031525922563281736}, {"caption": "\\Re{}", "snippet": "\\Re{$1}", "meta": "physics-cmd", "score": 0.0031525922563281736}, {"caption": "\\qq{}", "snippet": "\\qq{$1}", "meta": "physics-cmd", "score": 8.241282620919185e-05}, {"caption": "\\qq", "snippet": "\\qq", "meta": "physics-cmd", "score": 8.241282620919185e-05}, {"caption": "\\vb{}", "snippet": "\\vb{$1}", "meta": "physics-cmd", "score": 0.007377410801695042}, {"caption": "\\pdv{}{}", "snippet": "\\pdv{$1}{$2}", "meta": "physics-cmd", "score": 0.0014087913646471247}, {"caption": "\\pdv{}{}{}", "snippet": "\\pdv{$1}{$2}{$3}", "meta": "physics-cmd", "score": 0.0014087913646471247}, {"caption": "\\braket{}{}", "snippet": "\\braket{$1}{$2}", "meta": "physics-cmd", "score": 0.004421747491186916}, {"caption": "\\braket{}", "snippet": "\\braket{$1}", "meta": "physics-cmd", "score": 0.004421747491186916}, {"caption": "\\div", "snippet": "\\div", "meta": "physics-cmd", "score": 0.002403050103349905}, {"caption": "\\div{}", "snippet": "\\div{$1}", "meta": "physics-cmd", "score": 0.002403050103349905}, {"caption": "\\sin", "snippet": "\\sin", "meta": "physics-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "physics-cmd", "score": 0.040463088537699636}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "physics-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "physics-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "physics-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "physics-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "physics-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "physics-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "physics-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "physics-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "physics-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "physics-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "physics-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "physics-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "physics-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "physics-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "physics-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "physics-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "physics-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "physics-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "physics-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "physics-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "physics-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "physics-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "physics-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "physics-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "physics-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "physics-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "physics-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "physics-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "physics-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "physics-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "physics-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "physics-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "physics-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "physics-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "physics-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "physics-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "physics-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "physics-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "physics-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "physics-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "physics-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "physics-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "physics-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "physics-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "physics-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "physics-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "physics-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "physics-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "physics-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "physics-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "physics-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "physics-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "physics-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "physics-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "physics-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "physics-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "physics-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "physics-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "physics-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "physics-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "physics-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "physics-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "physics-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "physics-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "physics-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "physics-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "physics-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "physics-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "physics-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "physics-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "physics-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "physics-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "physics-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "physics-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "physics-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "physics-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "physics-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "physics-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "physics-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "physics-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "physics-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "physics-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "physics-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "physics-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "physics-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "physics-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "physics-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "physics-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "physics-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "physics-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "physics-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "physics-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "physics-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "physics-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "physics-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "physics-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "physics-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "physics-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "physics-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "physics-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "physics-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "physics-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "physics-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "physics-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "physics-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "physics-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "physics-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "physics-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "physics-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "physics-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "physics-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "physics-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "physics-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "physics-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "physics-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "physics-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "physics-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "physics-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "physics-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "physics-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "physics-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "physics-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "physics-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "physics-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "physics-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "physics-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "physics-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "physics-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "physics-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "physics-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "physics-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "physics-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "physics-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "physics-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "physics-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "physics-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "physics-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "physics-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "physics-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "physics-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "physics-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "physics-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "physics-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "physics-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "physics-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "physics-cmd", "score": 0.0004286136584068833}, {"caption": "\\do", "snippet": "\\do", "meta": "physics-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "physics-cmd", "score": 0.0063276692758974925}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "physics-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "physics-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "physics-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "physics-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "physics-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "physics-cmd", "score": 0.2864294797053033}], "authblk": [{"caption": "\\Authfont{}", "snippet": "\\Authfont{$1}", "meta": "authblk-cmd", "score": 0.00019538157043798684}, {"caption": "\\thanks{}", "snippet": "\\thanks{$1}", "meta": "authblk-cmd", "score": 0.08382259880654083}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "authblk-cmd", "score": 0.7504160124360846}, {"caption": "\\rlap{}", "snippet": "\\rlap{$1}", "meta": "authblk-cmd", "score": 0.01269300721396509}, {"caption": "\\Authands{}", "snippet": "\\Authands{$1}", "meta": "authblk-cmd", "score": 0.00043932814970131613}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "authblk-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "authblk-cmd", "score": 0.8973590434087177}, {"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "authblk-cmd", "score": 0.05216393882408519}, {"caption": "\\Affilfont{}", "snippet": "\\Affilfont{$1}", "meta": "authblk-cmd", "score": 0.0004505484831792931}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "authblk-cmd", "score": 0.2253056071787701}, {"caption": "\\affil[]{}", "snippet": "\\affil[$1]{$2}", "meta": "authblk-cmd", "score": 0.014174618039587864}, {"caption": "\\affil{}", "snippet": "\\affil{$1}", "meta": "authblk-cmd", "score": 0.014174618039587864}], "tabu": [{"caption": "\\extrarowheight", "snippet": "\\extrarowheight", "meta": "tabu-cmd", "score": 0.003735645243417412}, {"caption": "\\extrarowheight{}", "snippet": "\\extrarowheight{$1}", "meta": "tabu-cmd", "score": 0.003735645243417412}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabu-cmd", "score": 0.5473606021405326}, {"caption": "\\do", "snippet": "\\do", "meta": "tabu-cmd", "score": 0.009278344180101056}, {"caption": "\\hfill", "snippet": "\\hfill", "meta": "tabu-cmd", "score": 0.2058248088519886}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "tabu-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "tabu-cmd", "score": 0.022224283488673075}, {"caption": "\\tabulinesep", "snippet": "\\tabulinesep", "meta": "tabu-cmd", "score": 0.0008256968285249214}, {"caption": "\\hskip", "snippet": "\\hskip", "meta": "tabu-cmd", "score": 0.04339822811565144}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "tabu-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabu-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "tabu-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabu-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "tabu-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tabu-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "tabu-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "tabu-cmd", "score": 0.018615449342361392}, {"caption": "\\par", "snippet": "\\par", "meta": "tabu-cmd", "score": 0.413853376001159}], "CJKutf8": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "CJKutf8-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "CJKutf8-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "CJKutf8-cmd", "score": 0.021170869458413965}, {"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "CJKutf8-cmd", "score": 0.04598628699063736}, {"caption": "\\inputencoding{}", "snippet": "\\inputencoding{$1}", "meta": "CJKutf8-cmd", "score": 0.0002447047447770061}], "sectsty": [{"caption": "\\chapterfont{}", "snippet": "\\chapterfont{$1}", "meta": "sectsty-cmd", "score": 0.0001572081344977262}, {"caption": "\\raggedright", "snippet": "\\raggedright", "meta": "sectsty-cmd", "score": 0.05314494127699766}, {"caption": "\\sectionfont{}", "snippet": "\\sectionfont{$1}", "meta": "sectsty-cmd", "score": 0.003867941482301249}, {"caption": "\\paragraph{}", "snippet": "\\paragraph{$1}", "meta": "sectsty-cmd", "score": 0.152074250347974}, {"caption": "\\allsectionsfont{}", "snippet": "\\allsectionsfont{$1}", "meta": "sectsty-cmd", "score": 0.0011367198619746117}, {"caption": "\\subsection{}", "snippet": "\\subsection{$1}", "meta": "sectsty-cmd", "score": 1.3890912739512353}, {"caption": "\\subsectionfont{}", "snippet": "\\subsectionfont{$1}", "meta": "sectsty-cmd", "score": 0.002811633808315226}, {"caption": "\\interlinepenalty", "snippet": "\\interlinepenalty", "meta": "sectsty-cmd", "score": 0.00032069955588347133}, {"caption": "\\subsubsectionfont{}", "snippet": "\\subsubsectionfont{$1}", "meta": "sectsty-cmd", "score": 0.0011363939259266408}, {"caption": "\\underline{}", "snippet": "\\underline{$1}", "meta": "sectsty-cmd", "score": 0.14748550887002482}, {"caption": "\\subsubsection{}", "snippet": "\\subsubsection{$1}", "meta": "sectsty-cmd", "score": 0.3727781330132016}, {"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "sectsty-cmd", "score": 3.0952612541683835}], "lscape": [{"caption": "\\csname", "snippet": "\\csname", "meta": "lscape-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "lscape-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "lscape-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "lscape-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "lscape-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "lscape-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "lscape-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "lscape-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "lscape-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "lscape-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "lscape-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "lscape-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "lscape-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "lscape-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "lscape-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "lscape-cmd", "score": 0.004649150613625593}], "hyphenat": [{"caption": "\\hyp{}", "snippet": "\\hyp{$1}", "meta": "hyphenat-cmd", "score": 0.0013359874951570454}], "tocloft": [{"caption": "\\cftsecleader", "snippet": "\\cftsecleader", "meta": "tocloft-cmd", "score": 0.0011340882025681251}, {"caption": "\\cftloftitlefont", "snippet": "\\cftloftitlefont", "meta": "tocloft-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\cftchappresnum{}", "snippet": "\\cftchappresnum{$1}", "meta": "tocloft-cmd", "score": 2.8671864736205568e-05}, {"caption": "\\cftchappresnum", "snippet": "\\cftchappresnum", "meta": "tocloft-cmd", "score": 2.8671864736205568e-05}, {"caption": "\\listoftables", "snippet": "\\listoftables", "meta": "tocloft-cmd", "score": 0.02104656820469027}, {"caption": "\\cftsecfont{}", "snippet": "\\cftsecfont{$1}", "meta": "tocloft-cmd", "score": 5.630015640183448e-05}, {"caption": "\\cftchapfont{}", "snippet": "\\cftchapfont{$1}", "meta": "tocloft-cmd", "score": 6.253521408609416e-05}, {"caption": "\\cftchapfont", "snippet": "\\cftchapfont", "meta": "tocloft-cmd", "score": 6.253521408609416e-05}, {"caption": "\\cftsubsecleader", "snippet": "\\cftsubsecleader", "meta": "tocloft-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\cftchapleader", "snippet": "\\cftchapleader", "meta": "tocloft-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\tocloftpagestyle{}", "snippet": "\\tocloftpagestyle{$1}", "meta": "tocloft-cmd", "score": 8.392451158032374e-05}, {"caption": "\\cfttoctitlefont", "snippet": "\\cfttoctitlefont", "meta": "tocloft-cmd", "score": 6.877027177035383e-05}, {"caption": "\\cftdot", "snippet": "\\cftdot", "meta": "tocloft-cmd", "score": 1.6201749367686227e-05}, {"caption": "\\cftsecdotsep", "snippet": "\\cftsecdotsep", "meta": "tocloft-cmd", "score": 0.0029383990986223767}, {"caption": "\\cftafterloftitle", "snippet": "\\cftafterloftitle", "meta": "tocloft-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\listoffigures", "snippet": "\\listoffigures", "meta": "tocloft-cmd", "score": 0.03447318897846567}, {"caption": "\\cftdotfill{}", "snippet": "\\cftdotfill{$1}", "meta": "tocloft-cmd", "score": 0.006027562229085753}, {"caption": "\\tableofcontents", "snippet": "\\tableofcontents", "meta": "tocloft-cmd", "score": 0.13360595130994957}, {"caption": "\\cftdotsep", "snippet": "\\cftdotsep", "meta": "tocloft-cmd", "score": 0.003089163130463376}, {"caption": "\\numberline{}", "snippet": "\\numberline{$1}", "meta": "tocloft-cmd", "score": 0.007461440567272885}, {"caption": "\\cftlottitlefont", "snippet": "\\cftlottitlefont", "meta": "tocloft-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\cftchappagefont{}", "snippet": "\\cftchappagefont{$1}", "meta": "tocloft-cmd", "score": 5.630015640183448e-05}, {"caption": "\\cftsetindents{}{}{}", "snippet": "\\cftsetindents{$1}{$2}{$3}", "meta": "tocloft-cmd", "score": 0.00043647269161217853}, {"caption": "\\cftsecpagefont{}", "snippet": "\\cftsecpagefont{$1}", "meta": "tocloft-cmd", "score": 5.630015640183448e-05}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "tocloft-cmd", "score": 0.0174633138331273}, {"caption": "\\cftaftertoctitle", "snippet": "\\cftaftertoctitle", "meta": "tocloft-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\cftafterlottitle", "snippet": "\\cftafterlottitle", "meta": "tocloft-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\newlistof{}{}{}", "snippet": "\\newlistof{$1}{$2}{$3}", "meta": "tocloft-cmd", "score": 0.0005381264966408724}], "glossaries": [{"caption": "\\glslongpluralkey", "snippet": "\\glslongpluralkey", "meta": "glossaries-cmd", "score": 1.4538687447297259e-05}, {"caption": "\\Glspl{}", "snippet": "\\Glspl{$1}", "meta": "glossaries-cmd", "score": 0.0025291265119320736}, {"caption": "\\glossarysection", "snippet": "\\glossarysection", "meta": "glossaries-cmd", "score": 9.579755294730752e-05}, {"caption": "\\printglossaries", "snippet": "\\printglossaries", "meta": "glossaries-cmd", "score": 0.0010106582768889887}, {"caption": "\\Gls{}", "snippet": "\\Gls{$1}", "meta": "glossaries-cmd", "score": 0.003696678698317109}, {"caption": "\\setglossarystyle{}", "snippet": "\\setglossarystyle{$1}", "meta": "glossaries-cmd", "score": 0.0003758893277679221}, {"caption": "\\printglossary", "snippet": "\\printglossary", "meta": "glossaries-cmd", "score": 0.009139682306158714}, {"caption": "\\printglossary[]", "snippet": "\\printglossary[$1]", "meta": "glossaries-cmd", "score": 0.009139682306158714}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-cmd", "score": 0.009278344180101056}, {"caption": "\\setglossarysection{}", "snippet": "\\setglossarysection{$1}", "meta": "glossaries-cmd", "score": 3.6081414102781514e-05}, {"caption": "\\glsresetall", "snippet": "\\glsresetall", "meta": "glossaries-cmd", "score": 0.0006123462672467326}, {"caption": "\\the", "snippet": "\\the", "meta": "glossaries-cmd", "score": 0.007238960303946444}, {"caption": "\\acrshort{}", "snippet": "\\acrshort{$1}", "meta": "glossaries-cmd", "score": 0.009936841864059727}, {"caption": "\\printnoidxglossary[]", "snippet": "\\printnoidxglossary[$1]", "meta": "glossaries-cmd", "score": 0.00021912375285685037}, {"caption": "\\newglossary{}{}", "snippet": "\\newglossary{$1}{$2}", "meta": "glossaries-cmd", "score": 1.4547244650032571e-05}, {"caption": "\\gls{}", "snippet": "\\gls{$1}", "meta": "glossaries-cmd", "score": 0.06939353309055077}, {"caption": "\\printnoidxglossaries", "snippet": "\\printnoidxglossaries", "meta": "glossaries-cmd", "score": 5.6789564226023136e-05}, {"caption": "\\printindex", "snippet": "\\printindex", "meta": "glossaries-cmd", "score": 0.004417016910870522}, {"caption": "\\defglsentryfmt[]{}", "snippet": "\\defglsentryfmt[$1]{$2}", "meta": "glossaries-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\glspostdescription", "snippet": "\\glspostdescription", "meta": "glossaries-cmd", "score": 0.0006337376579591112}, {"caption": "\\number", "snippet": "\\number", "meta": "glossaries-cmd", "score": 0.000968714260809983}, {"caption": "\\glsaddall", "snippet": "\\glsaddall", "meta": "glossaries-cmd", "score": 0.0008363820557740373}, {"caption": "\\glsaddall[]", "snippet": "\\glsaddall[$1]", "meta": "glossaries-cmd", "score": 0.0008363820557740373}, {"caption": "\\makeglossaries", "snippet": "\\makeglossaries", "meta": "glossaries-cmd", "score": 0.0056737600836936995}, {"caption": "\\glossaryname", "snippet": "\\glossaryname", "meta": "glossaries-cmd", "score": 0.0006174536302752427}, {"caption": "\\newglossaryentry{}{}", "snippet": "\\newglossaryentry{$1}{$2}", "meta": "glossaries-cmd", "score": 0.018524394136900962}, {"caption": "\\glslabel", "snippet": "\\glslabel", "meta": "glossaries-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\glsadd{}", "snippet": "\\glsadd{$1}", "meta": "glossaries-cmd", "score": 3.0150373480213892e-05}, {"caption": "\\makenoidxglossaries", "snippet": "\\makenoidxglossaries", "meta": "glossaries-cmd", "score": 0.0001382210125680805}, {"caption": "\\glsgenentryfmt", "snippet": "\\glsgenentryfmt", "meta": "glossaries-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\acronymtype", "snippet": "\\acronymtype", "meta": "glossaries-cmd", "score": 0.002000834271117562}, {"caption": "\\acrfull{}", "snippet": "\\acrfull{$1}", "meta": "glossaries-cmd", "score": 0.0032622587277765067}, {"caption": "\\newacronym{}{}{}", "snippet": "\\newacronym{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 0.03193935544723102}, {"caption": "\\glspl{}", "snippet": "\\glspl{$1}", "meta": "glossaries-cmd", "score": 0.0034025897522047717}, {"caption": "\\ifglsused{}{}{}", "snippet": "\\ifglsused{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\acrlong{}", "snippet": "\\acrlong{$1}", "meta": "glossaries-cmd", "score": 0.002517821598213752}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "glossaries-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "glossaries-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "glossaries-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "glossaries-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "glossaries-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "glossaries-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "glossaries-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "glossaries-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "glossaries-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "glossaries-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "glossaries-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "glossaries-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "glossaries-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "glossaries-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "glossaries-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "glossaries-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "glossaries-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "glossaries-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "glossaries-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "glossaries-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "glossaries-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "glossaries-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "glossaries-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "glossaries-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "glossaries-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "glossaries-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "glossaries-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "glossaries-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "glossaries-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "glossaries-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "glossaries-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "glossaries-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "glossaries-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "glossaries-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "glossaries-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "glossaries-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "glossaries-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "glossaries-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "glossaries-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "glossaries-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "glossaries-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "glossaries-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "glossaries-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "glossaries-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "glossaries-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "glossaries-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "glossaries-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "glossaries-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "glossaries-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "glossaries-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "glossaries-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "glossaries-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "glossaries-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "glossaries-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "glossaries-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "glossaries-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "glossaries-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "glossaries-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "glossaries-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "glossaries-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "glossaries-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "glossaries-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "glossaries-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "glossaries-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "glossaries-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "glossaries-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "glossaries-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "glossaries-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "glossaries-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "glossaries-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "glossaries-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "glossaries-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "glossaries-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "glossaries-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "glossaries-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "glossaries-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "glossaries-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "glossaries-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "glossaries-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "glossaries-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "glossaries-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "glossaries-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "glossaries-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "glossaries-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "glossaries-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "glossaries-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "glossaries-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "glossaries-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "glossaries-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "glossaries-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "glossaries-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "glossaries-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "glossaries-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "glossaries-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "glossaries-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "glossaries-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "glossaries-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "glossaries-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "glossaries-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "glossaries-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "glossaries-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "glossaries-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "glossaries-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "glossaries-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "glossaries-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "glossaries-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "glossaries-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "glossaries-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "glossaries-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "glossaries-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "glossaries-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "glossaries-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "glossaries-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "glossaries-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "glossaries-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "glossaries-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "glossaries-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "glossaries-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "glossaries-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "glossaries-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "glossaries-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "glossaries-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "glossaries-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "glossaries-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "glossaries-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "glossaries-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "glossaries-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "glossaries-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "glossaries-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "glossaries-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "glossaries-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "glossaries-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "glossaries-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "glossaries-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "glossaries-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "glossaries-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "glossaries-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "glossaries-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "glossaries-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "glossaries-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "glossaries-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "glossaries-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "glossaries-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "glossaries-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "glossaries-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "glossaries-cmd", "score": 0.008565354665444157}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "glossaries-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "glossaries-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "glossaries-cmd", "score": 0.18137737738638837}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "glossaries-cmd", "score": 2.341195220791228}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "glossaries-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "glossaries-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "glossaries-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "glossaries-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "glossaries-cmd", "score": 0.0018957469739775527}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "glossaries-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "glossaries-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "glossaries-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "glossaries-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "glossaries-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "glossaries-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "glossaries-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "glossaries-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "glossaries-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "glossaries-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "glossaries-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "glossaries-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "glossaries-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "glossaries-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "glossaries-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "glossaries-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "glossaries-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "glossaries-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "glossaries-cmd", "score": 0.0063276692758974925}], "cleveref": [{"caption": "\\crefdefaultlabelformat{}", "snippet": "\\crefdefaultlabelformat{$1}", "meta": "cleveref-cmd", "score": 8.401009062000455e-06}, {"caption": "\\crefname{}{}{}", "snippet": "\\crefname{$1}{$2}{$3}", "meta": "cleveref-cmd", "score": 0.0016963440482621792}, {"caption": "\\crefrangeformat{}{}", "snippet": "\\crefrangeformat{$1}{$2}", "meta": "cleveref-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "cleveref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "cleveref-cmd", "score": 0.021170869458413965}, {"caption": "\\crefmultiformat{}{}", "snippet": "\\crefmultiformat{$1}{$2}", "meta": "cleveref-cmd", "score": 0.00021116765384691477}, {"caption": "\\crefformat{}{}", "snippet": "\\crefformat{$1}{$2}", "meta": "cleveref-cmd", "score": 0.0006776840671975755}, {"caption": "\\Cref{}", "snippet": "\\Cref{$1}", "meta": "cleveref-cmd", "score": 0.0016649686371949341}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "cleveref-cmd", "score": 0.002140559856649122}, {"caption": "\\cref{}", "snippet": "\\cref{$1}", "meta": "cleveref-cmd", "score": 0.0159491058092361}, {"caption": "\\crefrangeconjunction", "snippet": "\\crefrangeconjunction", "meta": "cleveref-cmd", "score": 3.2405622997778076e-06}, {"caption": "\\csname", "snippet": "\\csname", "meta": "cleveref-cmd", "score": 0.008565354665444157}, {"caption": "\\creflabelformat{}{}", "snippet": "\\creflabelformat{$1}{$2}", "meta": "cleveref-cmd", "score": 0.000997031755478214}, {"caption": "\\Crefname{}{}{}", "snippet": "\\Crefname{$1}{$2}{$3}", "meta": "cleveref-cmd", "score": 0.000239288793927364}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "cleveref-cmd", "score": 1.897791904799601}, {"caption": "\\labelcref{}", "snippet": "\\labelcref{$1}", "meta": "cleveref-cmd", "score": 6.720807249600364e-05}, {"caption": "\\creflastconjunction", "snippet": "\\creflastconjunction", "meta": "cleveref-cmd", "score": 3.2405622997778076e-06}], "eso-pic": [{"caption": "\\AddToShipoutPictureFG{}", "snippet": "\\AddToShipoutPictureFG{$1}", "meta": "eso-pic-cmd", "score": 0.000325977535138643}, {"caption": "\\AddToShipoutPictureBG{}", "snippet": "\\AddToShipoutPictureBG{$1}", "meta": "eso-pic-cmd", "score": 0.0008957666085644653}, {"caption": "\\AtPageUpperLeft{}", "snippet": "\\AtPageUpperLeft{$1}", "meta": "eso-pic-cmd", "score": 0.0003608141410278152}, {"caption": "\\LenToUnit{}", "snippet": "\\LenToUnit{$1}", "meta": "eso-pic-cmd", "score": 0.0007216282820556304}, {"caption": "\\AddToShipoutPicture{}", "snippet": "\\AddToShipoutPicture{$1}", "meta": "eso-pic-cmd", "score": 0.0017658629469099734}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "eso-pic-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "eso-pic-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "eso-pic-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "eso-pic-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "eso-pic-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "eso-pic-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "eso-pic-cmd", "score": 0.008565354665444157}], "mhchem": [{"caption": "\\ce{}", "snippet": "\\ce{$1}", "meta": "mhchem-cmd", "score": 0.04246600383063094}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mhchem-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mhchem-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "mhchem-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "mhchem-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "mhchem-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "mhchem-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "mhchem-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mhchem-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "mhchem-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mhchem-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "mhchem-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "mhchem-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "mhchem-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "mhchem-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "mhchem-cmd", "score": 0.004649150613625593}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "mhchem-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "mhchem-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "mhchem-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "mhchem-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "mhchem-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "mhchem-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "mhchem-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "mhchem-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "mhchem-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "mhchem-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "mhchem-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "mhchem-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "mhchem-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "mhchem-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "mhchem-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "mhchem-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "mhchem-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "mhchem-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "mhchem-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "mhchem-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "mhchem-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "mhchem-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "mhchem-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "mhchem-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "mhchem-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "mhchem-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "mhchem-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "mhchem-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "mhchem-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "mhchem-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "mhchem-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "mhchem-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "mhchem-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "mhchem-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "mhchem-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "mhchem-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "mhchem-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "mhchem-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "mhchem-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "mhchem-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "mhchem-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "mhchem-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "mhchem-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "mhchem-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "mhchem-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "mhchem-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "mhchem-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "mhchem-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "mhchem-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "mhchem-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "mhchem-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "mhchem-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "mhchem-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "mhchem-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "mhchem-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "mhchem-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "mhchem-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "mhchem-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "mhchem-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "mhchem-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "mhchem-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "mhchem-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "mhchem-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "mhchem-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "mhchem-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "mhchem-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "mhchem-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "mhchem-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "mhchem-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "mhchem-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "mhchem-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "mhchem-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "mhchem-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "mhchem-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "mhchem-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "mhchem-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "mhchem-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "mhchem-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "mhchem-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "mhchem-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "mhchem-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "mhchem-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "mhchem-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "mhchem-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "mhchem-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "mhchem-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "mhchem-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "mhchem-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "mhchem-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "mhchem-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "mhchem-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "mhchem-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "mhchem-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "mhchem-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "mhchem-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "mhchem-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "mhchem-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "mhchem-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "mhchem-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "mhchem-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "mhchem-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "mhchem-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "mhchem-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "mhchem-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "mhchem-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "mhchem-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "mhchem-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "mhchem-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "mhchem-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "mhchem-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "mhchem-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "mhchem-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "mhchem-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "mhchem-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "mhchem-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "mhchem-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "mhchem-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "mhchem-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "mhchem-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "mhchem-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "mhchem-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "mhchem-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "mhchem-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "mhchem-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "mhchem-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "mhchem-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "mhchem-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "mhchem-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "mhchem-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "mhchem-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "mhchem-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "mhchem-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "mhchem-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "mhchem-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "mhchem-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "mhchem-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "mhchem-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "mhchem-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "mhchem-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "mhchem-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "mhchem-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "mhchem-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "mhchem-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mhchem-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mhchem-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "mhchem-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mhchem-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "mhchem-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "mhchem-cmd", "score": 0.2864294797053033}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "mhchem-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "mhchem-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "mhchem-cmd", "score": 0.18137737738638837}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mhchem-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "mhchem-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "mhchem-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mhchem-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mhchem-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mhchem-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "mhchem-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "mhchem-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "mhchem-cmd", "score": 0.028955796305270766}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mhchem-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "mhchem-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "mhchem-cmd", "score": 0.0063276692758974925}], "amscd": [{"caption": "\\tag{}", "snippet": "\\tag{$1}", "meta": "amscd-cmd", "score": 0.00784357461002059}, {"caption": "\\do", "snippet": "\\do", "meta": "amscd-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amscd-cmd", "score": 0.0063276692758974925}], "unicode-math": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "unicode-math-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "unicode-math-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "unicode-math-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "unicode-math-cmd", "score": 0.2864294797053033}], "ifxetex": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "ifxetex-cmd", "score": 0.00021116765384691477}], "newtxmath": [{"caption": "\\int", "snippet": "\\int", "meta": "newtxmath-cmd", "score": 0.11946660537765894}, {"caption": "\\sqrt{}", "snippet": "\\sqrt{$1}", "meta": "newtxmath-cmd", "score": 0.20240160977404634}, {"caption": "\\prod", "snippet": "\\prod", "meta": "newtxmath-cmd", "score": 0.02549889375975901}, {"caption": "\\hbar", "snippet": "\\hbar", "meta": "newtxmath-cmd", "score": 0.024733493787737763}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "newtxmath-cmd", "score": 0.006473769486518971}, {"caption": "\\surd", "snippet": "\\surd", "meta": "newtxmath-cmd", "score": 0.002159694087964359}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "newtxmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\sum", "snippet": "\\sum", "meta": "newtxmath-cmd", "score": 0.42607994509619934}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "newtxmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "newtxmath-cmd", "score": 0.015507614799858266}, {"caption": "\\vdots", "snippet": "\\vdots", "meta": "newtxmath-cmd", "score": 0.03669355896719803}, {"caption": "\\ddots", "snippet": "\\ddots", "meta": "newtxmath-cmd", "score": 0.010831382784078964}, {"caption": "\\csname", "snippet": "\\csname", "meta": "newtxmath-cmd", "score": 0.008565354665444157}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "newtxmath-cmd", "score": 0.04318078602869565}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "newtxmath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "newtxmath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "newtxmath-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "newtxmath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "newtxmath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "newtxmath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "newtxmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "newtxmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "newtxmath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "newtxmath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "newtxmath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "newtxmath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "newtxmath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "newtxmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "newtxmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "newtxmath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "newtxmath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "newtxmath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "newtxmath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "newtxmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "newtxmath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "newtxmath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "newtxmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "newtxmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "newtxmath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "newtxmath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "newtxmath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "newtxmath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "newtxmath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "newtxmath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "newtxmath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "newtxmath-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "newtxmath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "newtxmath-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "newtxmath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "newtxmath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "newtxmath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "newtxmath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "newtxmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "newtxmath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "newtxmath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "newtxmath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "newtxmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "newtxmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "newtxmath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "newtxmath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "newtxmath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "newtxmath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "newtxmath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "newtxmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "newtxmath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "newtxmath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "newtxmath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "newtxmath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "newtxmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "newtxmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "newtxmath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "newtxmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "newtxmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "newtxmath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "newtxmath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "newtxmath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "newtxmath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "newtxmath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "newtxmath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "newtxmath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "newtxmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "newtxmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "newtxmath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "newtxmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "newtxmath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "newtxmath-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "newtxmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "newtxmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "newtxmath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "newtxmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "newtxmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "newtxmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "newtxmath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "newtxmath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "newtxmath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "newtxmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "newtxmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "newtxmath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "newtxmath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "newtxmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "newtxmath-cmd", "score": 0.00021116765384691477}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "newtxmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "newtxmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "newtxmath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "newtxmath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "newtxmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "newtxmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "newtxmath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "newtxmath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "newtxmath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "newtxmath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "newtxmath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "newtxmath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "newtxmath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "newtxmath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "newtxmath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "newtxmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "newtxmath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "newtxmath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "newtxmath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "newtxmath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "newtxmath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "newtxmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "newtxmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "newtxmath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "newtxmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "newtxmath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "newtxmath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "newtxmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "newtxmath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "newtxmath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "newtxmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "newtxmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "newtxmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "newtxmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "newtxmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "newtxmath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "newtxmath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "newtxmath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "newtxmath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "newtxmath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "newtxmath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "newtxmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "newtxmath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "newtxmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "newtxmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "newtxmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "newtxmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "newtxmath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "newtxmath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "newtxmath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "newtxmath-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "newtxmath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "newtxmath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "newtxmath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "newtxmath-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "newtxmath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "newtxmath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "newtxmath-cmd", "score": 0.0063276692758974925}], "pdflscape": [{"caption": "\\csname", "snippet": "\\csname", "meta": "pdflscape-cmd", "score": 0.008565354665444157}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "pdflscape-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pdflscape-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pdflscape-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pdflscape-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pdflscape-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pdflscape-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pdflscape-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pdflscape-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pdflscape-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pdflscape-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pdflscape-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pdflscape-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pdflscape-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pdflscape-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pdflscape-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pdflscape-cmd", "score": 0.004649150613625593}], "apacite": [{"caption": "\\citep{}", "snippet": "\\citep{$1}", "meta": "apacite-cmd", "score": 0.2941882834697057}, {"caption": "\\citet{}", "snippet": "\\citet{$1}", "meta": "apacite-cmd", "score": 0.09046048561361801}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "apacite-cmd", "score": 0.13586474005868793}, {"caption": "\\BPGS", "snippet": "\\BPGS", "meta": "apacite-cmd", "score": 0.00023651453263545777}, {"caption": "\\shortcite{}", "snippet": "\\shortcite{$1}", "meta": "apacite-cmd", "score": 0.010082057767216608}, {"caption": "\\shortciteA{}", "snippet": "\\shortciteA{$1}", "meta": "apacite-cmd", "score": 0.0011019769466422762}, {"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "apacite-cmd", "score": 0.04990693820960752}, {"caption": "\\refname", "snippet": "\\refname", "meta": "apacite-cmd", "score": 0.006490238196722249}, {"caption": "\\refname{}", "snippet": "\\refname{$1}", "meta": "apacite-cmd", "score": 0.006490238196722249}, {"caption": "\\citeA{}", "snippet": "\\citeA{$1}", "meta": "apacite-cmd", "score": 0.008470555729707068}, {"caption": "\\citeyear{}", "snippet": "\\citeyear{$1}", "meta": "apacite-cmd", "score": 0.01091041305836494}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "apacite-cmd", "score": 2.341195220791228}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "apacite-cmd", "score": 0.2659628337907604}, {"caption": "\\BPG", "snippet": "\\BPG", "meta": "apacite-cmd", "score": 0.00023651453263545777}, {"caption": "\\citeNP{}", "snippet": "\\citeNP{$1}", "meta": "apacite-cmd", "score": 0.0003168688289795556}, {"caption": "\\citeauthor{}", "snippet": "\\citeauthor{$1}", "meta": "apacite-cmd", "score": 0.01359248786373484}], "mathpazo": [{"caption": "\\big", "snippet": "\\big", "meta": "mathpazo-cmd", "score": 0.05613164277964739}, {"caption": "\\mathbb{}", "snippet": "\\mathbb{$1}", "meta": "mathpazo-cmd", "score": 0.33740449739178857}, {"caption": "\\Big", "snippet": "\\Big", "meta": "mathpazo-cmd", "score": 0.050370758781422345}], "footmisc": [{"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "footmisc-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "footmisc-cmd", "score": 0.0003680857021151614}, {"caption": "\\protect", "snippet": "\\protect", "meta": "footmisc-cmd", "score": 0.0200686676229443}, {"caption": "\\multfootsep", "snippet": "\\multfootsep", "meta": "footmisc-cmd", "score": 0.00010171098214158578}, {"caption": "\\footnotelayout", "snippet": "\\footnotelayout", "meta": "footmisc-cmd", "score": 0.0004535003423927585}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "footmisc-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "footmisc-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "footmisc-cmd", "score": 0.021473212893597875}, {"caption": "\\thefootnote", "snippet": "\\thefootnote", "meta": "footmisc-cmd", "score": 0.007676927812687567}, {"caption": "\\thefootnote{}", "snippet": "\\thefootnote{$1}", "meta": "footmisc-cmd", "score": 0.007676927812687567}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "footmisc-cmd", "score": 0.1789117552185788}], "fixltx2e": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "fixltx2e-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "fixltx2e-cmd", "score": 0.354445763583904}, {"caption": "\\textsubscript{}", "snippet": "\\textsubscript{$1}", "meta": "fixltx2e-cmd", "score": 0.058405875394131175}, {"caption": "\\em", "snippet": "\\em", "meta": "fixltx2e-cmd", "score": 0.10357353994640862}], "sidecap": [{"caption": "\\csname", "snippet": "\\csname", "meta": "sidecap-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "sidecap-cmd", "score": 1.2569477427490174}, {"caption": "\\sidecaptionvpos{}{}", "snippet": "\\sidecaptionvpos{$1}{$2}", "meta": "sidecap-cmd", "score": 0.0006587927449241846}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "sidecap-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "sidecap-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "sidecap-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "sidecap-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "sidecap-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "sidecap-cmd", "score": 0.0018957469739775527}], "nomencl": [{"caption": "\\nomenclature[]{}{}", "snippet": "\\nomenclature[$1]{$2}{$3}", "meta": "nomencl-cmd", "score": 0.016053526743355948}, {"caption": "\\nomenclature{}{}", "snippet": "\\nomenclature{$1}{$2}", "meta": "nomencl-cmd", "score": 0.016053526743355948}, {"caption": "\\nomlabel", "snippet": "\\nomlabel", "meta": "nomencl-cmd", "score": 6.353668036093916e-05}, {"caption": "\\printnomenclature", "snippet": "\\printnomenclature", "meta": "nomencl-cmd", "score": 0.0014526113324237952}, {"caption": "\\printnomenclature[]", "snippet": "\\printnomenclature[$1]", "meta": "nomencl-cmd", "score": 0.0014526113324237952}, {"caption": "\\makenomenclature", "snippet": "\\makenomenclature", "meta": "nomencl-cmd", "score": 0.002310610204652063}, {"caption": "\\nomgroup", "snippet": "\\nomgroup", "meta": "nomencl-cmd", "score": 0.0005549290951493257}, {"caption": "\\nomgroup[]{}", "snippet": "\\nomgroup[$1]{$2}", "meta": "nomencl-cmd", "score": 0.0005549290951493257}, {"caption": "\\nomname", "snippet": "\\nomname", "meta": "nomencl-cmd", "score": 0.0015092617929470952}, {"caption": "\\nompreamble", "snippet": "\\nompreamble", "meta": "nomencl-cmd", "score": 2.4350510995473236e-05}, {"caption": "\\nomentryend", "snippet": "\\nomentryend", "meta": "nomencl-cmd", "score": 0.000137692304514793}], "afterpage": [{"caption": "\\afterpage{}", "snippet": "\\afterpage{$1}", "meta": "afterpage-cmd", "score": 0.0018578070791608345}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "afterpage-cmd", "score": 0.1789117552185788}], "titling": [{"caption": "\\thanks{}", "snippet": "\\thanks{$1}", "meta": "titling-cmd", "score": 0.08382259880654083}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "titling-cmd", "score": 0.7504160124360846}, {"caption": "\\posttitle{}", "snippet": "\\posttitle{$1}", "meta": "titling-cmd", "score": 0.002507149245154055}, {"caption": "\\postdate{}", "snippet": "\\postdate{$1}", "meta": "titling-cmd", "score": 0.002139478682489868}, {"caption": "\\predate{}", "snippet": "\\predate{$1}", "meta": "titling-cmd", "score": 0.002139478682489868}, {"caption": "\\preauthor{}", "snippet": "\\preauthor{$1}", "meta": "titling-cmd", "score": 0.0023736543205198435}, {"caption": "\\postauthor{}", "snippet": "\\postauthor{$1}", "meta": "titling-cmd", "score": 0.0023736543205198435}, {"caption": "\\pretitle{}", "snippet": "\\pretitle{$1}", "meta": "titling-cmd", "score": 0.002507149245154055}], "wasysym": [{"caption": "\\checked", "snippet": "\\checked", "meta": "wasysym-cmd", "score": 0.0027792832228568255}, {"caption": "\\int", "snippet": "\\int", "meta": "wasysym-cmd", "score": 0.11946660537765894}, {"caption": "\\diameter", "snippet": "\\diameter", "meta": "wasysym-cmd", "score": 0.0001645367385856751}, {"caption": "\\CIRCLE", "snippet": "\\CIRCLE", "meta": "wasysym-cmd", "score": 0.000250667024953401}], "eurosym": [{"caption": "\\EUR{}", "snippet": "\\EUR{$1}", "meta": "eurosym-cmd", "score": 3.661595357097087e-05}], "caption2": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "caption2-cmd", "score": 0.00037306820619479756}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "caption2-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "caption2-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "caption2-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "caption2-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "caption2-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "caption2-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "caption2-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "caption2-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "caption2-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "caption2-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "caption2-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "caption2-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "caption2-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "caption2-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "caption2-cmd", "score": 0.021473212893597875}], "amsbsy": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "amsbsy-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "amsbsy-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "amsbsy-cmd", "score": 0.18137737738638837}, {"caption": "\\do", "snippet": "\\do", "meta": "amsbsy-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsbsy-cmd", "score": 0.0063276692758974925}], "CJK": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "CJK-cmd", "score": 0.04598628699063736}], "makecell": [{"caption": "\\diaghead{}{}{}", "snippet": "\\diaghead{$1}{$2}{$3}", "meta": "makecell-cmd", "score": 2.0417817976377812e-05}, {"caption": "\\makecell{}", "snippet": "\\makecell{$1}", "meta": "makecell-cmd", "score": 0.005023670619810683}, {"caption": "\\makecell[]{}", "snippet": "\\makecell[$1]{$2}", "meta": "makecell-cmd", "score": 0.005023670619810683}, {"caption": "\\height", "snippet": "\\height", "meta": "makecell-cmd", "score": 0.0045883162478394055}, {"caption": "\\height{}", "snippet": "\\height{$1}", "meta": "makecell-cmd", "score": 0.0045883162478394055}, {"caption": "\\setcellgapes{}", "snippet": "\\setcellgapes{$1}", "meta": "makecell-cmd", "score": 0.0004960838428758984}, {"caption": "\\thead{}", "snippet": "\\thead{$1}", "meta": "makecell-cmd", "score": 0.0023087638254186797}, {"caption": "\\Gape[]", "snippet": "\\Gape[$1]", "meta": "makecell-cmd", "score": 0.000469300371741866}, {"caption": "\\theadgape{}", "snippet": "\\theadgape{$1}", "meta": "makecell-cmd", "score": 0.000234650185870933}, {"caption": "\\theadalign", "snippet": "\\theadalign", "meta": "makecell-cmd", "score": 0.0006746935448099005}, {"caption": "\\theadalign{}", "snippet": "\\theadalign{$1}", "meta": "makecell-cmd", "score": 0.0006746935448099005}, {"caption": "\\theadset{}", "snippet": "\\theadset{$1}", "meta": "makecell-cmd", "score": 0.0004400433589389675}, {"caption": "\\Xhline{}", "snippet": "\\Xhline{$1}", "meta": "makecell-cmd", "score": 0.0024175651338281096}, {"caption": "\\theadfont{}", "snippet": "\\theadfont{$1}", "meta": "makecell-cmd", "score": 0.0007935193556772338}, {"caption": "\\theadfont", "snippet": "\\theadfont", "meta": "makecell-cmd", "score": 0.0007935193556772338}, {"caption": "\\cellgape{}", "snippet": "\\cellgape{$1}", "meta": "makecell-cmd", "score": 0.000234650185870933}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "makecell-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "makecell-cmd", "score": 0.022224283488673075}, {"caption": "\\makegapedcells", "snippet": "\\makegapedcells", "meta": "makecell-cmd", "score": 0.000431467454221244}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "makecell-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "makecell-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "makecell-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "makecell-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "makecell-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "makecell-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "makecell-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "makecell-cmd", "score": 0.018615449342361392}], "xeCJK": [{"caption": "\\setCJKmonofont{}", "snippet": "\\setCJKmonofont{$1}", "meta": "xeCJK-cmd", "score": 0.0057178353252375245}, {"caption": "\\setCJKmainfont{}", "snippet": "\\setCJKmainfont{$1}", "meta": "xeCJK-cmd", "score": 0.006622926778590894}, {"caption": "\\setCJKmainfont[]{}", "snippet": "\\setCJKmainfont[$1]{$2}", "meta": "xeCJK-cmd", "score": 0.006622926778590894}, {"caption": "\\setCJKsansfont{}", "snippet": "\\setCJKsansfont{$1}", "meta": "xeCJK-cmd", "score": 0.0057178353252375245}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xeCJK-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xeCJK-cmd", "score": 0.2864294797053033}], "threeparttable": [{"caption": "\\csname", "snippet": "\\csname", "meta": "threeparttable-cmd", "score": 0.008565354665444157}, {"caption": "\\item", "snippet": "\\item", "meta": "threeparttable-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "threeparttable-cmd", "score": 3.800886892251021}], "dirtytalk": [{"caption": "\\say{}", "snippet": "\\say{$1}", "meta": "dirtytalk-cmd", "score": 0.010246289746417045}, {"caption": "\\empty", "snippet": "\\empty", "meta": "dirtytalk-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "dirtytalk-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "dirtytalk-cmd", "score": 0.008565354665444157}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "dirtytalk-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "dirtytalk-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "dirtytalk-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "dirtytalk-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "dirtytalk-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "dirtytalk-cmd", "score": 0.0018957469739775527}, {"caption": "\\empty", "snippet": "\\empty", "meta": "dirtytalk-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "dirtytalk-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "dirtytalk-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "dirtytalk-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "dirtytalk-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "dirtytalk-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "dirtytalk-cmd", "score": 0.021170869458413965}], "balance": [{"caption": "\\balance", "snippet": "\\balance", "meta": "balance-cmd", "score": 0.003629066156300264}, {"caption": "\\balance{}", "snippet": "\\balance{$1}", "meta": "balance-cmd", "score": 0.003629066156300264}], "minted": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\usemintedstyle{}", "snippet": "\\usemintedstyle{$1}", "meta": "minted-cmd", "score": 0.00184279823796158}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\inputminted[]{}{}", "snippet": "\\inputminted[$1]{$2}{$3}", "meta": "minted-cmd", "score": 0.0016501519191680601}, {"caption": "\\inputminted{}{}", "snippet": "\\inputminted{$1}{$2}", "meta": "minted-cmd", "score": 0.0016501519191680601}, {"caption": "\\setminted[]{}", "snippet": "\\setminted[$1]{$2}", "meta": "minted-cmd", "score": 0.0004017914210172805}, {"caption": "\\setminted{}", "snippet": "\\setminted{$1}", "meta": "minted-cmd", "score": 0.0004017914210172805}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "minted-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "minted-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "minted-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "minted-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "minted-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "minted-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "minted-cmd", "score": 0.0009837365348002915}, {"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "minted-cmd", "score": 0.0005815474978918903}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "minted-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "minted-cmd", "score": 0.0015470917047414941}, {"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "minted-cmd", "score": 0.0011934321931750752}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "minted-cmd", "score": 1.2569477427490174}, {"caption": "\\newfloat{}{}{}", "snippet": "\\newfloat{$1}{$2}{$3}", "meta": "minted-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat", "snippet": "\\newfloat", "meta": "minted-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat{}", "snippet": "\\newfloat{$1}", "meta": "minted-cmd", "score": 0.0012745874472536625}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "minted-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "minted-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "minted-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "minted-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "minted-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "minted-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "minted-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "minted-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "minted-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "minted-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "minted-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "minted-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "minted-cmd", "score": 0.0018957469739775527}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\fbox{}", "snippet": "\\fbox{$1}", "meta": "minted-cmd", "score": 0.020865450075016792}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "minted-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\pagewiselinenumbers", "snippet": "\\pagewiselinenumbers", "meta": "minted-cmd", "score": 0.00016870831850106035}, {"caption": "\\linenomath", "snippet": "\\linenomath", "meta": "minted-cmd", "score": 1.4517338420208715e-05}, {"caption": "\\linenumberfont{}", "snippet": "\\linenumberfont{$1}", "meta": "minted-cmd", "score": 0.0001811784338695797}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\endlinenomath", "snippet": "\\endlinenomath", "meta": "minted-cmd", "score": 1.4517338420208715e-05}, {"caption": "\\nolinenumbers", "snippet": "\\nolinenumbers", "meta": "minted-cmd", "score": 0.0009805246614299932}, {"caption": "\\path", "snippet": "\\path", "meta": "minted-cmd", "score": 0.028200474217322108}, {"caption": "\\path[]", "snippet": "\\path[$1]", "meta": "minted-cmd", "score": 0.028200474217322108}, {"caption": "\\path{}", "snippet": "\\path{$1}", "meta": "minted-cmd", "score": 0.028200474217322108}, {"caption": "\\filedate{}", "snippet": "\\filedate{$1}", "meta": "minted-cmd", "score": 0.000578146635331119}, {"caption": "\\filedate", "snippet": "\\filedate", "meta": "minted-cmd", "score": 0.000578146635331119}, {"caption": "\\linenumbers", "snippet": "\\linenumbers", "meta": "minted-cmd", "score": 0.004687680659497865}, {"caption": "\\modulolinenumbers[]", "snippet": "\\modulolinenumbers[$1]", "meta": "minted-cmd", "score": 0.0027194991933605197}, {"caption": "\\fileversion{}", "snippet": "\\fileversion{$1}", "meta": "minted-cmd", "score": 0.000578146635331119}, {"caption": "\\fileversion", "snippet": "\\fileversion", "meta": "minted-cmd", "score": 0.000578146635331119}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "minted-cmd", "score": 0.021170869458413965}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "minted-cmd", "score": 0.002140559856649122}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "minted-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\fvset{}", "snippet": "\\fvset{$1}", "meta": "minted-cmd", "score": 0.00015476887282479622}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "minted-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "minted-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "minted-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "minted-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "minted-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "minted-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "minted-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "minted-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "minted-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "minted-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "minted-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "minted-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "minted-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "minted-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "minted-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "minted-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "minted-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "minted-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "minted-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "minted-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "minted-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "minted-cmd", "score": 0.008565354665444157}], "xifthen": [{"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "xifthen-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "xifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "xifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "xifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "xifthen-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "xifthen-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "xifthen-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "xifthen-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "xifthen-cmd", "score": 0.0018957469739775527}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "xifthen-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "xifthen-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "xifthen-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xifthen-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xifthen-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "xifthen-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "xifthen-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "xifthen-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "xifthen-cmd", "score": 0.028955796305270766}], "relsize": [{"caption": "\\mathlarger{}", "snippet": "\\mathlarger{$1}", "meta": "relsize-cmd", "score": 0.0031475241540308316}, {"caption": "\\smaller", "snippet": "\\smaller", "meta": "relsize-cmd", "score": 0.001271007880944704}], "epsf": [{"caption": "\\epsfbox{}", "snippet": "\\epsfbox{$1}", "meta": "epsf-cmd", "score": 0.00013712781345832882}], "datetime": [{"caption": "\\shortmonthname[]", "snippet": "\\shortmonthname[$1]", "meta": "datetime-cmd", "score": 0.00018524143860552933}, {"caption": "\\THEYEAR", "snippet": "\\THEYEAR", "meta": "datetime-cmd", "score": 8.638115929876123e-05}, {"caption": "\\currenttime", "snippet": "\\currenttime", "meta": "datetime-cmd", "score": 0.0002884868472087627}, {"caption": "\\monthname", "snippet": "\\monthname", "meta": "datetime-cmd", "score": 8.847106423071211e-05}, {"caption": "\\monthname[]", "snippet": "\\monthname[$1]", "meta": "datetime-cmd", "score": 8.847106423071211e-05}, {"caption": "\\today", "snippet": "\\today", "meta": "datetime-cmd", "score": 0.10733849317324783}, {"caption": "\\THEMONTH", "snippet": "\\THEMONTH", "meta": "datetime-cmd", "score": 8.638115929876123e-05}, {"caption": "\\yyyymmdddate", "snippet": "\\yyyymmdddate", "meta": "datetime-cmd", "score": 0.0002568405365040184}, {"caption": "\\pdfdate", "snippet": "\\pdfdate", "meta": "datetime-cmd", "score": 9.673490669434574e-05}, {"caption": "\\dateseparator", "snippet": "\\dateseparator", "meta": "datetime-cmd", "score": 0.00010966778823652713}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datetime-cmd", "score": 0.008565354665444157}, {"caption": "\\THEDAY", "snippet": "\\THEDAY", "meta": "datetime-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\usdate", "snippet": "\\usdate", "meta": "datetime-cmd", "score": 0.00020980148911330757}, {"caption": "\\newdateformat{}{}", "snippet": "\\newdateformat{$1}{$2}", "meta": "datetime-cmd", "score": 8.638115929876123e-05}, {"caption": "\\settimeformat{}", "snippet": "\\settimeformat{$1}", "meta": "datetime-cmd", "score": 0.00010966778823652713}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datetime-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "datetime-cmd", "score": 0.00037306820619479756}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "datetime-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "datetime-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "datetime-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "datetime-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "datetime-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "datetime-cmd", "score": 0.0018957469739775527}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "datetime-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datetime-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "datetime-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "datetime-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "datetime-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "datetime-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "datetime-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "datetime-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "datetime-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "datetime-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "datetime-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "datetime-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "datetime-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "datetime-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "datetime-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "datetime-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "datetime-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "datetime-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "datetime-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "datetime-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "datetime-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "datetime-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "datetime-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datetime-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "datetime-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "datetime-cmd", "score": 0.0063276692758974925}], "fontawesome": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "fontawesome-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "fontawesome-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "fontawesome-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "fontawesome-cmd", "score": 0.2864294797053033}], "forest": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "forest-cmd", "score": 0.00530510025314411}, {"caption": "\\bracketset{}", "snippet": "\\bracketset{$1}", "meta": "forest-cmd", "score": 0.00014301574866674164}, {"caption": "\\forestset{}", "snippet": "\\forestset{$1}", "meta": "forest-cmd", "score": 0.0020596473883671114}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "forest-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "forest-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "forest-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "forest-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "forest-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "forest-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "forest-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "forest-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "forest-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "forest-cmd", "score": 0.004649150613625593}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "forest-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "forest-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "forest-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "forest-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "forest-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "forest-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "forest-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "forest-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "forest-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "forest-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "forest-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "forest-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "forest-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "forest-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "forest-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "forest-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "forest-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "forest-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "forest-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "forest-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "forest-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "forest-cmd", "score": 0.2864294797053033}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "forest-cmd", "score": 0.004719094298848707}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "forest-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "forest-cmd", "score": 0.00031058155311734754}, {"caption": "\\csname", "snippet": "\\csname", "meta": "forest-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "forest-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "forest-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "forest-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "forest-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "forest-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "forest-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "forest-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "forest-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "forest-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "forest-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "forest-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "forest-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "forest-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "forest-cmd", "score": 0.2864294797053033}], "pgf": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgf-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgf-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgf-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgf-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgf-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgf-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgf-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgf-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgf-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgf-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgf-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgf-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgf-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgf-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgf-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgf-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgf-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgf-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgf-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgf-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgf-cmd", "score": 0.2864294797053033}], "pstricks": [{"caption": "\\green", "snippet": "\\green", "meta": "pstricks-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pstricks-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pstricks-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pstricks-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pstricks-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pstricks-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pstricks-cmd", "score": 0.006520475264573554}], "fancybox": [{"caption": "\\shadowbox{}", "snippet": "\\shadowbox{$1}", "meta": "fancybox-cmd", "score": 0.00107667147399019}, {"caption": "\\doublebox", "snippet": "\\doublebox", "meta": "fancybox-cmd", "score": 0.00015142240898356106}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "fancybox-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\thisfancypage{}{}", "snippet": "\\thisfancypage{$1}{$2}", "meta": "fancybox-cmd", "score": 0.00015142240898356106}, {"caption": "\\TheSbox", "snippet": "\\TheSbox", "meta": "fancybox-cmd", "score": 4.5350034239275855e-05}], "braket": [{"caption": "\\ket{}", "snippet": "\\ket{$1}", "meta": "braket-cmd", "score": 0.0326276280979336}, {"caption": "\\braket{}{}", "snippet": "\\braket{$1}{$2}", "meta": "braket-cmd", "score": 0.004421747491186916}, {"caption": "\\braket{}", "snippet": "\\braket{$1}", "meta": "braket-cmd", "score": 0.004421747491186916}, {"caption": "\\ketbra{}{}", "snippet": "\\ketbra{$1}{$2}", "meta": "braket-cmd", "score": 0.0006317858348936015}, {"caption": "\\ketbra", "snippet": "\\ketbra", "meta": "braket-cmd", "score": 0.0006317858348936015}, {"caption": "\\bra{}", "snippet": "\\bra{$1}", "meta": "braket-cmd", "score": 0.005609763332417241}, {"caption": "\\csname", "snippet": "\\csname", "meta": "braket-cmd", "score": 0.008565354665444157}], "import": [{"caption": "\\import{}{}", "snippet": "\\import{$1}{$2}", "meta": "import-cmd", "score": 0.1265354812350108}], "abntex2cite": [{"caption": "\\citeonline{}", "snippet": "\\citeonline{$1}", "meta": "abntex2cite-cmd", "score": 0.014277840409455324}, {"caption": "\\bibitem{}", "snippet": "\\bibitem{$1}", "meta": "abntex2cite-cmd", "score": 0.3689547570562042}, {"caption": "\\bibitem[]{}", "snippet": "\\bibitem[$1]{$2}", "meta": "abntex2cite-cmd", "score": 0.3689547570562042}, {"caption": "\\bibliographystyle{}", "snippet": "\\bibliographystyle{$1}", "meta": "abntex2cite-cmd", "score": 0.25122317941387773}, {"caption": "\\citeyear{}", "snippet": "\\citeyear{$1}", "meta": "abntex2cite-cmd", "score": 0.01091041305836494}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "abntex2cite-cmd", "score": 2.341195220791228}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "abntex2cite-cmd", "score": 0.2659628337907604}, {"caption": "\\setstretch{}", "snippet": "\\setstretch{$1}", "meta": "abntex2cite-cmd", "score": 0.019634763572332112}, {"caption": "\\onehalfspacing", "snippet": "\\onehalfspacing", "meta": "abntex2cite-cmd", "score": 0.010655415521079565}, {"caption": "\\singlespacing", "snippet": "\\singlespacing", "meta": "abntex2cite-cmd", "score": 0.008351544612280968}, {"caption": "\\doublespacing", "snippet": "\\doublespacing", "meta": "abntex2cite-cmd", "score": 0.007835428951987135}, {"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "abntex2cite-cmd", "score": 0.03225350148161425}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "abntex2cite-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "abntex2cite-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "abntex2cite-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "abntex2cite-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "abntex2cite-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "abntex2cite-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "abntex2cite-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "abntex2cite-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "abntex2cite-cmd", "score": 0.028955796305270766}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "abntex2cite-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "abntex2cite-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "abntex2cite-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "abntex2cite-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "abntex2cite-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "abntex2cite-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "abntex2cite-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "abntex2cite-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "abntex2cite-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "abntex2cite-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "abntex2cite-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "abntex2cite-cmd", "score": 0.00021116765384691477}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "abntex2cite-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "abntex2cite-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "abntex2cite-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "abntex2cite-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "abntex2cite-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "abntex2cite-cmd", "score": 0.0018957469739775527}], "isodate": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "isodate-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "isodate-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "isodate-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "isodate-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "isodate-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "isodate-cmd", "score": 0.0018957469739775527}], "tcolorbox": [{"caption": "\\tcbset{}", "snippet": "\\tcbset{$1}", "meta": "tcolorbox-cmd", "score": 0.00012246447222402193}, {"caption": "\\tcbuselibrary{}", "snippet": "\\tcbuselibrary{$1}", "meta": "tcolorbox-cmd", "score": 4.347671035621014e-05}, {"caption": "\\newtcolorbox[]{}[][]{}", "snippet": "\\newtcolorbox[$1]{$2}[$3][$4]{$5}", "meta": "tcolorbox-cmd", "score": 7.216282820556303e-05}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "tcolorbox-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "tcolorbox-cmd", "score": 0.022224283488673075}, {"caption": "\\newtcbox{}[][]{}", "snippet": "\\newtcbox{$1}[$2][$3]{$4}", "meta": "tcolorbox-cmd", "score": 3.558785984219631e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tcolorbox-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "tcolorbox-cmd", "score": 0.0022216421267780076}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "tcolorbox-cmd", "score": 0.0072203369120285256}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\par", "snippet": "\\par", "meta": "tcolorbox-cmd", "score": 0.413853376001159}, {"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "tcolorbox-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "tcolorbox-cmd", "score": 0.0024547099784948665}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tcolorbox-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tcolorbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tcolorbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tcolorbox-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tcolorbox-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tcolorbox-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tcolorbox-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tcolorbox-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tcolorbox-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tcolorbox-cmd", "score": 0.004649150613625593}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "tcolorbox-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "tcolorbox-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "tcolorbox-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "tcolorbox-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "tcolorbox-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "tcolorbox-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "tcolorbox-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "tcolorbox-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "tcolorbox-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "tcolorbox-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "tcolorbox-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tcolorbox-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "tcolorbox-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "tcolorbox-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "tcolorbox-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tcolorbox-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tcolorbox-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tcolorbox-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tcolorbox-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tcolorbox-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tcolorbox-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tcolorbox-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tcolorbox-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tcolorbox-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tcolorbox-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tcolorbox-cmd", "score": 0.2864294797053033}], "vmargin": [{"caption": "\\setmargins{}", "snippet": "\\setmargins{$1}", "meta": "vmargin-cmd", "score": 3.138510306083217e-05}, {"caption": "\\setmarginsrb{}{}{}{}{}{}{}{}", "snippet": "\\setmarginsrb{$1}{$2}{$3}{$4}{$5}{$6}{$7}{$8}", "meta": "vmargin-cmd", "score": 0.0004759508676929243}, {"caption": "\\setpapersize{}", "snippet": "\\setpapersize{$1}", "meta": "vmargin-cmd", "score": 3.138510306083217e-05}], "mdframed": [{"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\newmdenv[]{}", "snippet": "\\newmdenv[$1]{$2}", "meta": "mdframed-cmd", "score": 0.0008776774843208122}, {"caption": "\\surroundwithmdframed[]{}", "snippet": "\\surroundwithmdframed[$1]{$2}", "meta": "mdframed-cmd", "score": 5.535446508489438e-05}, {"caption": "\\newmdtheoremenv{}{}", "snippet": "\\newmdtheoremenv{$1}{$2}", "meta": "mdframed-cmd", "score": 3.558785984219631e-05}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mdframed-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mdframed-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "mdframed-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "mdframed-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "mdframed-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "mdframed-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "mdframed-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "mdframed-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "mdframed-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "mdframed-cmd", "score": 0.2864294797053033}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mdframed-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mdframed-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "mdframed-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "mdframed-cmd", "score": 0.2864294797053033}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "mdframed-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "mdframed-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mdframed-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mdframed-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mdframed-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "mdframed-cmd", "score": 0.002958865219480927}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "mdframed-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "mdframed-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "mdframed-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "mdframed-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "mdframed-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "mdframed-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "mdframed-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "mdframed-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "mdframed-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "mdframed-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "mdframed-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "mdframed-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "mdframed-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mdframed-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "mdframed-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "mdframed-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "mdframed-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "mdframed-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mdframed-cmd", "score": 0.008565354665444157}], "cancel": [{"caption": "\\cancel{}", "snippet": "\\cancel{$1}", "meta": "cancel-cmd", "score": 0.00017782514657538044}, {"caption": "\\cancelto{}{}", "snippet": "\\cancelto{$1}{$2}", "meta": "cancel-cmd", "score": 7.809089624140706e-05}], "textcase": [{"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "textcase-cmd", "score": 2.341195220791228}], "libertine": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "libertine-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "libertine-cmd", "score": 0.008565354665444157}], "flushend": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "flushend-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "flushend-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "flushend-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "flushend-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "flushend-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "flushend-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "flushend-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "flushend-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "flushend-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "flushend-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "flushend-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "flushend-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "flushend-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "flushend-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "flushend-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "flushend-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "flushend-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "flushend-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "flushend-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "flushend-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "flushend-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "flushend-cmd", "score": 0.008565354665444157}], "psfrag": [{"caption": "\\csname", "snippet": "\\csname", "meta": "psfrag-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "psfrag-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "psfrag-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "psfrag-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "psfrag-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "psfrag-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "psfrag-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "psfrag-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "psfrag-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "psfrag-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "psfrag-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "psfrag-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "psfrag-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "psfrag-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "psfrag-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "psfrag-cmd", "score": 0.004649150613625593}], "tablefootnote": [{"caption": "\\tablefootnote{}", "snippet": "\\tablefootnote{$1}", "meta": "tablefootnote-cmd", "score": 0.00017554048326570823}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "tablefootnote-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "tablefootnote-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "tablefootnote-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tablefootnote-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tablefootnote-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "tablefootnote-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "tablefootnote-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "tablefootnote-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "tablefootnote-cmd", "score": 0.028955796305270766}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tablefootnote-cmd", "score": 0.008565354665444157}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tablefootnote-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tablefootnote-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tablefootnote-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tablefootnote-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tablefootnote-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "tablefootnote-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "tablefootnote-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tablefootnote-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "tablefootnote-cmd", "score": 0.0018957469739775527}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tablefootnote-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tablefootnote-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tablefootnote-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tablefootnote-cmd", "score": 0.021170869458413965}], "amstext": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "amstext-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "amstext-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "amstext-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "amstext-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "amstext-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amstext-cmd", "score": 0.0063276692758974925}], "units": [{"caption": "\\unitfrac{}{}", "snippet": "\\unitfrac{$1}{$2}", "meta": "units-cmd", "score": 0.0009264866770139672}, {"caption": "\\unitfrac[]{}{}", "snippet": "\\unitfrac[$1]{$2}{$3}", "meta": "units-cmd", "score": 0.0009264866770139672}, {"caption": "\\unit[]{}", "snippet": "\\unit[$1]{$2}", "meta": "units-cmd", "score": 0.028299796173135428}, {"caption": "\\unit{}", "snippet": "\\unit{$1}", "meta": "units-cmd", "score": 0.028299796173135428}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "units-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "units-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "units-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "units-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "units-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "units-cmd", "score": 0.0018957469739775527}, {"caption": "\\nicefrac{}{}", "snippet": "\\nicefrac{$1}{$2}", "meta": "units-cmd", "score": 0.0018011350423659288}], "scrextend": [{"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "scrextend-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "scrextend-cmd", "score": 0.0003680857021151614}, {"caption": "\\scriptsize", "snippet": "\\scriptsize", "meta": "scrextend-cmd", "score": 0.05550618634921613}, {"caption": "\\scriptsize{}", "snippet": "\\scriptsize{$1}", "meta": "scrextend-cmd", "score": 0.05550618634921613}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "scrextend-cmd", "score": 0.7504160124360846}, {"caption": "\\Large", "snippet": "\\Large", "meta": "scrextend-cmd", "score": 0.1987771081149759}, {"caption": "\\Large{}", "snippet": "\\Large{$1}", "meta": "scrextend-cmd", "score": 0.1987771081149759}, {"caption": "\\and", "snippet": "\\and", "meta": "scrextend-cmd", "score": 0.09847866956528724}, {"caption": "\\LARGE", "snippet": "\\LARGE", "meta": "scrextend-cmd", "score": 0.05947642043953873}, {"caption": "\\LARGE{}", "snippet": "\\LARGE{$1}", "meta": "scrextend-cmd", "score": 0.05947642043953873}, {"caption": "\\subtitle{}", "snippet": "\\subtitle{$1}", "meta": "scrextend-cmd", "score": 0.01803265454797817}, {"caption": "\\large", "snippet": "\\large", "meta": "scrextend-cmd", "score": 0.20377416734108866}, {"caption": "\\large{}", "snippet": "\\large{$1}", "meta": "scrextend-cmd", "score": 0.20377416734108866}, {"caption": "\\Huge", "snippet": "\\Huge", "meta": "scrextend-cmd", "score": 0.04725806985998919}, {"caption": "\\footnotesize", "snippet": "\\footnotesize", "meta": "scrextend-cmd", "score": 0.2038592081252624}, {"caption": "\\footnotesize{}", "snippet": "\\footnotesize{$1}", "meta": "scrextend-cmd", "score": 0.2038592081252624}, {"caption": "\\small", "snippet": "\\small", "meta": "scrextend-cmd", "score": 0.2447632045426295}, {"caption": "\\small{}", "snippet": "\\small{$1}", "meta": "scrextend-cmd", "score": 0.2447632045426295}, {"caption": "\\huge", "snippet": "\\huge", "meta": "scrextend-cmd", "score": 0.04229832859754922}, {"caption": "\\huge{}", "snippet": "\\huge{$1}", "meta": "scrextend-cmd", "score": 0.04229832859754922}, {"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "scrextend-cmd", "score": 0.044016804142963585}, {"caption": "\\tiny{}", "snippet": "\\tiny{$1}", "meta": "scrextend-cmd", "score": 0.047727606910742924}, {"caption": "\\tiny", "snippet": "\\tiny", "meta": "scrextend-cmd", "score": 0.047727606910742924}, {"caption": "\\deffootnote[]{}{}{}", "snippet": "\\deffootnote[$1]{$2}{$3}{$4}", "meta": "scrextend-cmd", "score": 2.545393270896533e-05}, {"caption": "\\thefootnote", "snippet": "\\thefootnote", "meta": "scrextend-cmd", "score": 0.007676927812687567}, {"caption": "\\thefootnote{}", "snippet": "\\thefootnote{$1}", "meta": "scrextend-cmd", "score": 0.007676927812687567}, {"caption": "\\normalsize", "snippet": "\\normalsize", "meta": "scrextend-cmd", "score": 0.14261697855738878}, {"caption": "\\normalsize{}", "snippet": "\\normalsize{$1}", "meta": "scrextend-cmd", "score": 0.14261697855738878}, {"caption": "\\titlefont", "snippet": "\\titlefont", "meta": "scrextend-cmd", "score": 0.0005278519180709353}, {"caption": "\\thefootnotemark", "snippet": "\\thefootnotemark", "meta": "scrextend-cmd", "score": 2.545393270896533e-05}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "scrextend-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "scrextend-cmd", "score": 0.1789117552185788}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "scrextend-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "scrextend-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "scrextend-cmd", "score": 0.000396664302361659}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scrextend-cmd", "score": 0.00037306820619479756}], "mwe": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mwe-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mwe-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "mwe-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "mwe-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "mwe-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "mwe-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "mwe-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mwe-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "mwe-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mwe-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "mwe-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "mwe-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "mwe-cmd", "score": 0.004719094298848707}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "mwe-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mwe-cmd", "score": 0.008565354665444157}], "beamerposter": [{"caption": "\\scriptsize", "snippet": "\\scriptsize", "meta": "beamerposter-cmd", "score": 0.05550618634921613}, {"caption": "\\scriptsize{}", "snippet": "\\scriptsize{$1}", "meta": "beamerposter-cmd", "score": 0.05550618634921613}, {"caption": "\\Large", "snippet": "\\Large", "meta": "beamerposter-cmd", "score": 0.1987771081149759}, {"caption": "\\Large{}", "snippet": "\\Large{$1}", "meta": "beamerposter-cmd", "score": 0.1987771081149759}, {"caption": "\\footnotesize", "snippet": "\\footnotesize", "meta": "beamerposter-cmd", "score": 0.2038592081252624}, {"caption": "\\footnotesize{}", "snippet": "\\footnotesize{$1}", "meta": "beamerposter-cmd", "score": 0.2038592081252624}, {"caption": "\\LARGE", "snippet": "\\LARGE", "meta": "beamerposter-cmd", "score": 0.05947642043953873}, {"caption": "\\LARGE{}", "snippet": "\\LARGE{$1}", "meta": "beamerposter-cmd", "score": 0.05947642043953873}, {"caption": "\\large", "snippet": "\\large", "meta": "beamerposter-cmd", "score": 0.20377416734108866}, {"caption": "\\large{}", "snippet": "\\large{$1}", "meta": "beamerposter-cmd", "score": 0.20377416734108866}, {"caption": "\\VeryHuge", "snippet": "\\VeryHuge", "meta": "beamerposter-cmd", "score": 0.000892251826639951}, {"caption": "\\small", "snippet": "\\small", "meta": "beamerposter-cmd", "score": 0.2447632045426295}, {"caption": "\\small{}", "snippet": "\\small{$1}", "meta": "beamerposter-cmd", "score": 0.2447632045426295}, {"caption": "\\VERYHuge", "snippet": "\\VERYHuge", "meta": "beamerposter-cmd", "score": 0.0011668714784222325}, {"caption": "\\veryHuge", "snippet": "\\veryHuge", "meta": "beamerposter-cmd", "score": 0.000892251826639951}, {"caption": "\\normalsize", "snippet": "\\normalsize", "meta": "beamerposter-cmd", "score": 0.14261697855738878}, {"caption": "\\normalsize{}", "snippet": "\\normalsize{$1}", "meta": "beamerposter-cmd", "score": 0.14261697855738878}, {"caption": "\\tiny{}", "snippet": "\\tiny{$1}", "meta": "beamerposter-cmd", "score": 0.047727606910742924}, {"caption": "\\tiny", "snippet": "\\tiny", "meta": "beamerposter-cmd", "score": 0.047727606910742924}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "beamerposter-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "beamerposter-cmd", "score": 0.021170869458413965}], "footnote": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "footnote-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "footnote-cmd", "score": 0.021170869458413965}, {"caption": "\\makesavenoteenv{}", "snippet": "\\makesavenoteenv{$1}", "meta": "footnote-cmd", "score": 0.0018587414325895479}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "footnote-cmd", "score": 0.2253056071787701}, {"caption": "\\csname", "snippet": "\\csname", "meta": "footnote-cmd", "score": 0.008565354665444157}, {"caption": "\\parbox{}{}", "snippet": "\\parbox{$1}{$2}", "meta": "footnote-cmd", "score": 0.04800611019618169}], "invoice": [{"caption": "\\Fee{}{}{}", "snippet": "\\Fee{$1}{$2}{$3}", "meta": "invoice-cmd", "score": 0.003295435821387378}, {"caption": "\\ProjectTitle{}", "snippet": "\\ProjectTitle{$1}", "meta": "invoice-cmd", "score": 0.003295435821387378}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "invoice-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "invoice-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "invoice-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "invoice-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "invoice-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "invoice-cmd", "score": 0.0018957469739775527}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "invoice-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "invoice-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "invoice-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "invoice-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "invoice-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "invoice-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "invoice-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "invoice-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "invoice-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "invoice-cmd", "score": 0.0313525090421608}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "invoice-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "invoice-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "invoice-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "invoice-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "invoice-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "invoice-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "invoice-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "invoice-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "invoice-cmd", "score": 0.028955796305270766}], "tikzpeople": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpeople-cmd", "score": 0.008565354665444157}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "tikzpeople-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "tikzpeople-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "tikzpeople-cmd", "score": 0.028955796305270766}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikzpeople-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikzpeople-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikzpeople-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpeople-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikzpeople-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpeople-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikzpeople-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikzpeople-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzpeople-cmd", "score": 0.004719094298848707}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "tikzpeople-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "tikzpeople-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "tikzpeople-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "tikzpeople-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "tikzpeople-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "tikzpeople-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "tikzpeople-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "tikzpeople-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "tikzpeople-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "tikzpeople-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "tikzpeople-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpeople-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "tikzpeople-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "tikzpeople-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "tikzpeople-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpeople-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikzpeople-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzpeople-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikzpeople-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpeople-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikzpeople-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpeople-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikzpeople-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikzpeople-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikzpeople-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikzpeople-cmd", "score": 0.2864294797053033}], "titletoc": [{"caption": "\\thecontentspage", "snippet": "\\thecontentspage", "meta": "titletoc-cmd", "score": 0.0008054115902675176}, {"caption": "\\startcontents", "snippet": "\\startcontents", "meta": "titletoc-cmd", "score": 0.00026847053008917257}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "titletoc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "titletoc-cmd", "score": 0.021170869458413965}, {"caption": "\\printcontents{}{}{}", "snippet": "\\printcontents{$1}{$2}{$3}", "meta": "titletoc-cmd", "score": 0.00013423526504458629}, {"caption": "\\titlecontents{}[]", "snippet": "\\titlecontents{$1}[$2]", "meta": "titletoc-cmd", "score": 0.0017036290423289926}, {"caption": "\\titlecontents{}[]{}{}{}{}[]", "snippet": "\\titlecontents{$1}[$2]{$3}{$4}{$5}{$6}[$7]", "meta": "titletoc-cmd", "score": 0.0017036290423289926}, {"caption": "\\titlecontents{}[]{}{}{}{}", "snippet": "\\titlecontents{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "titletoc-cmd", "score": 0.0017036290423289926}, {"caption": "\\numberline{}", "snippet": "\\numberline{$1}", "meta": "titletoc-cmd", "score": 0.007461440567272885}, {"caption": "\\dottedcontents{}[]{}{}{}", "snippet": "\\dottedcontents{$1}[$2]{$3}{$4}{$5}", "meta": "titletoc-cmd", "score": 4.743909531747666e-05}, {"caption": "\\filcenter", "snippet": "\\filcenter", "meta": "titletoc-cmd", "score": 0.0004835660211260246}, {"caption": "\\thecontentslabel", "snippet": "\\thecontentslabel", "meta": "titletoc-cmd", "score": 0.0010521864830662522}, {"caption": "\\contentsuse{}{}", "snippet": "\\contentsuse{$1}{$2}", "meta": "titletoc-cmd", "score": 6.110202388233705e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "titletoc-cmd", "score": 0.008565354665444157}, {"caption": "\\contentspage", "snippet": "\\contentspage", "meta": "titletoc-cmd", "score": 0.0004955116569277163}, {"caption": "\\contentslabel[]{}", "snippet": "\\contentslabel[$1]{$2}", "meta": "titletoc-cmd", "score": 0.0011055859582683105}, {"caption": "\\contentslabel{}", "snippet": "\\contentslabel{$1}", "meta": "titletoc-cmd", "score": 0.0011055859582683105}, {"caption": "\\contentsmargin{}", "snippet": "\\contentsmargin{$1}", "meta": "titletoc-cmd", "score": 0.00013423526504458629}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "titletoc-cmd", "score": 0.3277033727934986}, {"caption": "\\titlerule", "snippet": "\\titlerule", "meta": "titletoc-cmd", "score": 0.019273712561461216}, {"caption": "\\titlerule[]{}", "snippet": "\\titlerule[$1]{$2}", "meta": "titletoc-cmd", "score": 0.019273712561461216}], "dblfloatfix": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "dblfloatfix-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "dblfloatfix-cmd", "score": 0.354445763583904}, {"caption": "\\textsubscript{}", "snippet": "\\textsubscript{$1}", "meta": "dblfloatfix-cmd", "score": 0.058405875394131175}, {"caption": "\\em", "snippet": "\\em", "meta": "dblfloatfix-cmd", "score": 0.10357353994640862}], "pgfplotstable": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplotstable-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "pgfplotstable-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "pgfplotstable-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "pgfplotstable-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "pgfplotstable-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplotstable-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "pgfplotstable-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.018615449342361392}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfplotstable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfplotstable-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfplotstable-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfplotstable-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfplotstable-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfplotstable-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfplotstable-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplotstable-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfplotstable-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfplotstable-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfplotstable-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfplotstable-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfplotstable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfplotstable-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfplotstable-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfplotstable-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfplotstable-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfplotstable-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfplotstable-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfplotstable-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfplotstable-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfplotstable-cmd", "score": 0.2864294797053033}], "acronym": [{"caption": "\\acp{}", "snippet": "\\acp{$1}", "meta": "acronym-cmd", "score": 0.0005185177930914685}, {"caption": "\\acsfont{}", "snippet": "\\acsfont{$1}", "meta": "acronym-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\aclabelfont", "snippet": "\\aclabelfont", "meta": "acronym-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\acro{}{}", "snippet": "\\acro{$1}{$2}", "meta": "acronym-cmd", "score": 0.023587207425038587}, {"caption": "\\acl{}", "snippet": "\\acl{$1}", "meta": "acronym-cmd", "score": 0.0008131607751426444}, {"caption": "\\acf{}", "snippet": "\\acf{$1}", "meta": "acronym-cmd", "score": 0.0006845634165950408}, {"caption": "\\acrodef{}[]{}", "snippet": "\\acrodef{$1}[$2]{$3}", "meta": "acronym-cmd", "score": 0.0002902047200830372}, {"caption": "\\acs{}", "snippet": "\\acs{$1}", "meta": "acronym-cmd", "score": 0.002351209826598939}, {"caption": "\\acfp{}", "snippet": "\\acfp{$1}", "meta": "acronym-cmd", "score": 2.2013599341265054e-05}, {"caption": "\\ac{}", "snippet": "\\ac{$1}", "meta": "acronym-cmd", "score": 0.04714113215364704}, {"caption": "\\let", "snippet": "\\let", "meta": "acronym-cmd", "score": 0.03789745970461662}], "nicefrac": [{"caption": "\\nicefrac{}{}", "snippet": "\\nicefrac{$1}{$2}", "meta": "nicefrac-cmd", "score": 0.0018011350423659288}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "nicefrac-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "nicefrac-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "nicefrac-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "nicefrac-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "nicefrac-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "nicefrac-cmd", "score": 0.0018957469739775527}], "smartdiagram": [{"caption": "\\usesmartdiagramlibrary{}", "snippet": "\\usesmartdiagramlibrary{$1}", "meta": "smartdiagram-cmd", "score": 7.216282820556303e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "smartdiagram-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "smartdiagram-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "smartdiagram-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "smartdiagram-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "smartdiagram-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "smartdiagram-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "smartdiagram-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "smartdiagram-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "smartdiagram-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "smartdiagram-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "smartdiagram-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "smartdiagram-cmd", "score": 0.004719094298848707}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "smartdiagram-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "smartdiagram-cmd", "score": 0.2864294797053033}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "smartdiagram-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "smartdiagram-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "smartdiagram-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "smartdiagram-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "smartdiagram-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "smartdiagram-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "smartdiagram-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "smartdiagram-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "smartdiagram-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "smartdiagram-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "smartdiagram-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "smartdiagram-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "smartdiagram-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "smartdiagram-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "smartdiagram-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "smartdiagram-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "smartdiagram-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "smartdiagram-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "smartdiagram-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "smartdiagram-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "smartdiagram-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "smartdiagram-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "smartdiagram-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "smartdiagram-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "smartdiagram-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "smartdiagram-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "smartdiagram-cmd", "score": 0.2864294797053033}], "qtree": [{"caption": "\\qroof{}", "snippet": "\\qroof{$1}", "meta": "qtree-cmd", "score": 0.00012663929287995903}, {"caption": "\\Tree[]", "snippet": "\\Tree[$1]", "meta": "qtree-cmd", "score": 0.0008894716589418522}, {"caption": "\\Tree", "snippet": "\\Tree", "meta": "qtree-cmd", "score": 0.0008894716589418522}], "backref": [{"caption": "\\backrefpagesname", "snippet": "\\backrefpagesname", "meta": "backref-cmd", "score": 0.0022756001200686213}, {"caption": "\\backref", "snippet": "\\backref", "meta": "backref-cmd", "score": 0.0025820187198826706}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "backref-cmd", "score": 0.1789117552185788}, {"caption": "\\global", "snippet": "\\global", "meta": "backref-cmd", "score": 0.006609629561859019}, {"caption": "\\csname", "snippet": "\\csname", "meta": "backref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "backref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "backref-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "backref-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "backref-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "backref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "backref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "backref-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "backref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "backref-cmd", "score": 0.021170869458413965}, {"caption": "\\empty", "snippet": "\\empty", "meta": "backref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "backref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "backref-cmd", "score": 0.008565354665444157}, {"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "backref-cmd", "score": 0.010304996748556729}, {"caption": "\\index{}", "snippet": "\\index{$1}", "meta": "backref-cmd", "score": 0.013774721817648336}, {"caption": "\\empty", "snippet": "\\empty", "meta": "backref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "backref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "backref-cmd", "score": 0.008565354665444157}], "epigraph": [{"caption": "\\epigraphflush{}", "snippet": "\\epigraphflush{$1}", "meta": "epigraph-cmd", "score": 1.8073688234300064e-05}, {"caption": "\\epigraphsize{}", "snippet": "\\epigraphsize{$1}", "meta": "epigraph-cmd", "score": 6.820709322498027e-05}, {"caption": "\\epigraphsize", "snippet": "\\epigraphsize", "meta": "epigraph-cmd", "score": 6.820709322498027e-05}, {"caption": "\\epigraph{}{}", "snippet": "\\epigraph{$1}{$2}", "meta": "epigraph-cmd", "score": 0.0031428856022970054}], "chngcntr": [{"caption": "\\counterwithin{}{}", "snippet": "\\counterwithin{$1}{$2}", "meta": "chngcntr-cmd", "score": 0.001287401394784382}, {"caption": "\\counterwithout{}{}", "snippet": "\\counterwithout{$1}{$2}", "meta": "chngcntr-cmd", "score": 0.0026127666246546326}], "empheq": [{"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "empheq-cmd", "score": 0.20852115286477566}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "empheq-cmd", "score": 1.897791904799601}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "empheq-cmd", "score": 0.051980653969641216}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "empheq-cmd", "score": 0.06345266254167037}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "empheq-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "empheq-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "empheq-cmd", "score": 0.18137737738638837}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "empheq-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "empheq-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "empheq-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "empheq-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "empheq-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "empheq-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "empheq-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "empheq-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "empheq-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "empheq-cmd", "score": 0.028955796305270766}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "empheq-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "empheq-cmd", "score": 0.021170869458413965}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "empheq-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "empheq-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "empheq-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "empheq-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "empheq-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "empheq-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "empheq-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "empheq-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "empheq-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "empheq-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "empheq-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "empheq-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "empheq-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "empheq-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "empheq-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "empheq-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "empheq-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "empheq-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "empheq-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "empheq-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "empheq-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "empheq-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "empheq-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "empheq-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "empheq-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "empheq-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "empheq-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "empheq-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "empheq-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "empheq-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "empheq-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "empheq-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "empheq-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "empheq-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "empheq-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "empheq-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "empheq-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "empheq-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "empheq-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "empheq-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "empheq-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "empheq-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "empheq-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "empheq-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "empheq-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "empheq-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "empheq-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "empheq-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "empheq-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "empheq-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "empheq-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "empheq-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "empheq-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "empheq-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "empheq-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "empheq-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "empheq-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "empheq-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "empheq-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "empheq-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "empheq-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "empheq-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "empheq-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "empheq-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "empheq-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "empheq-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "empheq-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "empheq-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "empheq-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "empheq-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "empheq-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "empheq-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "empheq-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "empheq-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "empheq-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "empheq-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "empheq-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "empheq-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "empheq-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "empheq-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "empheq-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "empheq-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "empheq-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "empheq-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "empheq-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "empheq-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "empheq-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "empheq-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "empheq-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "empheq-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "empheq-cmd", "score": 0.0058847868741168765}, {"caption": "\\xleftrightarrow[][]{}", "snippet": "\\xleftrightarrow[$1][$2]{$3}", "meta": "empheq-cmd", "score": 4.015559489911509e-05}, {"caption": "\\vcentcolon", "snippet": "\\vcentcolon", "meta": "empheq-cmd", "score": 0.00021361943526711615}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "empheq-cmd", "score": 0.0016148076375871775}, {"caption": "\\coloneqq", "snippet": "\\coloneqq", "meta": "empheq-cmd", "score": 0.0014407293323958122}, {"caption": "\\mathclap{}", "snippet": "\\mathclap{$1}", "meta": "empheq-cmd", "score": 7.84378567451772e-05}, {"caption": "\\adjustlimits", "snippet": "\\adjustlimits", "meta": "empheq-cmd", "score": 0.0005307066890271085}, {"caption": "\\MoveEqLeft", "snippet": "\\MoveEqLeft", "meta": "empheq-cmd", "score": 5.343949980628182e-05}, {"caption": "\\mathrlap{}", "snippet": "\\mathrlap{$1}", "meta": "empheq-cmd", "score": 0.0003112817211637952}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "empheq-cmd", "score": 0.051980653969641216}, {"caption": "\\xhookrightarrow{}", "snippet": "\\xhookrightarrow{$1}", "meta": "empheq-cmd", "score": 5.444260823474129e-05}, {"caption": "\\DeclarePairedDelimiter{}{}{}", "snippet": "\\DeclarePairedDelimiter{$1}{$2}{$3}", "meta": "empheq-cmd", "score": 0.0033916678416372487}, {"caption": "\\DeclarePairedDelimiter", "snippet": "\\DeclarePairedDelimiter", "meta": "empheq-cmd", "score": 0.0033916678416372487}, {"caption": "\\prescript{}{}{}", "snippet": "\\prescript{$1}{$2}{$3}", "meta": "empheq-cmd", "score": 8.833369785705982e-06}, {"caption": "\\underbrace{}", "snippet": "\\underbrace{$1}", "meta": "empheq-cmd", "score": 0.010373780436850907}, {"caption": "\\mathllap{}", "snippet": "\\mathllap{$1}", "meta": "empheq-cmd", "score": 3.140504277052775e-05}, {"caption": "\\overbrace{}", "snippet": "\\overbrace{$1}", "meta": "empheq-cmd", "score": 0.0006045704778718376}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "empheq-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "empheq-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "empheq-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "empheq-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "empheq-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "empheq-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "empheq-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "empheq-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "empheq-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "empheq-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "empheq-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "empheq-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "empheq-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "empheq-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "empheq-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "empheq-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "empheq-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "empheq-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "empheq-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "empheq-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "empheq-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "empheq-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "empheq-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "empheq-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "empheq-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "empheq-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "empheq-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "empheq-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "empheq-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "empheq-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "empheq-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "empheq-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "empheq-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "empheq-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "empheq-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "empheq-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "empheq-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "empheq-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "empheq-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "empheq-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "empheq-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "empheq-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "empheq-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "empheq-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "empheq-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "empheq-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "empheq-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "empheq-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "empheq-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "empheq-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "empheq-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "empheq-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "empheq-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "empheq-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "empheq-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "empheq-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "empheq-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "empheq-cmd", "score": 0.0063276692758974925}], "mathexam": [{"caption": "\\ExamInstrBox{}", "snippet": "\\ExamInstrBox{$1}", "meta": "mathexam-cmd", "score": 0.00035308240943436196}, {"caption": "\\ExamName{}", "snippet": "\\ExamName{$1}", "meta": "mathexam-cmd", "score": 0.00165391233892938}, {"caption": "\\ExamNameLine", "snippet": "\\ExamNameLine", "meta": "mathexam-cmd", "score": 0.00165391233892938}, {"caption": "\\ExamClass{}", "snippet": "\\ExamClass{$1}", "meta": "mathexam-cmd", "score": 0.00165391233892938}, {"caption": "\\ExamHead{}", "snippet": "\\ExamHead{$1}", "meta": "mathexam-cmd", "score": 0.00165391233892938}, {"caption": "\\answer{}", "snippet": "\\answer{$1}", "meta": "mathexam-cmd", "score": 0.0034436236729672894}, {"caption": "\\answer", "snippet": "\\answer", "meta": "mathexam-cmd", "score": 0.0034436236729672894}, {"caption": "\\lhead{}", "snippet": "\\lhead{$1}", "meta": "mathexam-cmd", "score": 0.05268978171228714}, {"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "mathexam-cmd", "score": 0.005924520024686584}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "mathexam-cmd", "score": 0.005924520024686584}, {"caption": "\\fancypagestyle{}{}", "snippet": "\\fancypagestyle{$1}{$2}", "meta": "mathexam-cmd", "score": 0.009430919590937878}, {"caption": "\\footrule", "snippet": "\\footrule", "meta": "mathexam-cmd", "score": 0.0010032754348913366}, {"caption": "\\footrule{}", "snippet": "\\footrule{$1}", "meta": "mathexam-cmd", "score": 0.0010032754348913366}, {"caption": "\\fancyfoot[]{}", "snippet": "\\fancyfoot[$1]{$2}", "meta": "mathexam-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfoot{}", "snippet": "\\fancyfoot{$1}", "meta": "mathexam-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfootoffset[]{}", "snippet": "\\fancyfootoffset[$1]{$2}", "meta": "mathexam-cmd", "score": 0.0015373246231684555}, {"caption": "\\fancyfootoffset{}", "snippet": "\\fancyfootoffset{$1}", "meta": "mathexam-cmd", "score": 0.0015373246231684555}, {"caption": "\\footruleskip", "snippet": "\\footruleskip", "meta": "mathexam-cmd", "score": 0.000830117957327721}, {"caption": "\\fancyheadoffset[]{}", "snippet": "\\fancyheadoffset[$1]{$2}", "meta": "mathexam-cmd", "score": 0.0016786568695309166}, {"caption": "\\fancyheadoffset{}", "snippet": "\\fancyheadoffset{$1}", "meta": "mathexam-cmd", "score": 0.0016786568695309166}, {"caption": "\\iffloatpage{}{}", "snippet": "\\iffloatpage{$1}{$2}", "meta": "mathexam-cmd", "score": 6.606286310833368e-05}, {"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "mathexam-cmd", "score": 0.013411641301057813}, {"caption": "\\subsectionmark", "snippet": "\\subsectionmark", "meta": "mathexam-cmd", "score": 3.1153423008593836e-05}, {"caption": "\\footrulewidth", "snippet": "\\footrulewidth", "meta": "mathexam-cmd", "score": 0.011424740897486949}, {"caption": "\\fancyhfoffset[]{}", "snippet": "\\fancyhfoffset[$1]{$2}", "meta": "mathexam-cmd", "score": 3.741978601121172e-05}, {"caption": "\\rhead{}", "snippet": "\\rhead{$1}", "meta": "mathexam-cmd", "score": 0.022782817416731292}, {"caption": "\\fancyplain{}{}", "snippet": "\\fancyplain{$1}{$2}", "meta": "mathexam-cmd", "score": 0.007402339896386138}, {"caption": "\\rfoot{}", "snippet": "\\rfoot{$1}", "meta": "mathexam-cmd", "score": 0.013393817825547868}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mathexam-cmd", "score": 0.00530510025314411}, {"caption": "\\plainheadrulewidth", "snippet": "\\plainheadrulewidth", "meta": "mathexam-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "mathexam-cmd", "score": 0.03225350148161425}, {"caption": "\\lfoot{}", "snippet": "\\lfoot{$1}", "meta": "mathexam-cmd", "score": 0.00789399846642229}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "mathexam-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "mathexam-cmd", "score": 0.006776001543888959}, {"caption": "\\fancyhf{}", "snippet": "\\fancyhf{$1}", "meta": "mathexam-cmd", "score": 0.02314618933449356}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "mathexam-cmd", "score": 0.005008938879210868}, {"caption": "\\fancyhead[]{}", "snippet": "\\fancyhead[$1]{$2}", "meta": "mathexam-cmd", "score": 0.039101068064744296}, {"caption": "\\fancyhead{}", "snippet": "\\fancyhead{$1}", "meta": "mathexam-cmd", "score": 0.039101068064744296}, {"caption": "\\nouppercase{}", "snippet": "\\nouppercase{$1}", "meta": "mathexam-cmd", "score": 0.006416387071584083}, {"caption": "\\nouppercase", "snippet": "\\nouppercase", "meta": "mathexam-cmd", "score": 0.006416387071584083}, {"caption": "\\headrule", "snippet": "\\headrule", "meta": "mathexam-cmd", "score": 0.0008327432627715623}, {"caption": "\\headrule{}", "snippet": "\\headrule{$1}", "meta": "mathexam-cmd", "score": 0.0008327432627715623}, {"caption": "\\chead{}", "snippet": "\\chead{$1}", "meta": "mathexam-cmd", "score": 0.00755042164734884}, {"caption": "\\headrulewidth", "snippet": "\\headrulewidth", "meta": "mathexam-cmd", "score": 0.02268137935335823}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "mathexam-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "mathexam-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "mathexam-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "mathexam-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "mathexam-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "mathexam-cmd", "score": 0.0018957469739775527}, {"caption": "\\string", "snippet": "\\string", "meta": "mathexam-cmd", "score": 0.001042697111754002}], "floatrow": [{"caption": "\\floatfoot{}", "snippet": "\\floatfoot{$1}", "meta": "floatrow-cmd", "score": 0.0015365464531749851}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "floatrow-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatsetup[]{}", "snippet": "\\floatsetup[$1]{$2}", "meta": "floatrow-cmd", "score": 0.0005456136119914056}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "floatrow-cmd", "score": 0.00037306820619479756}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "floatrow-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "floatrow-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "floatrow-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "floatrow-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "floatrow-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "floatrow-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "floatrow-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "floatrow-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "floatrow-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "floatrow-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "floatrow-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "floatrow-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "floatrow-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "floatrow-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "floatrow-cmd", "score": 0.021473212893597875}], "scrpage2": [{"caption": "\\automark[]{}", "snippet": "\\automark[$1]{$2}", "meta": "scrpage2-cmd", "score": 0.0006703031783997437}, {"caption": "\\automark{}", "snippet": "\\automark{$1}", "meta": "scrpage2-cmd", "score": 0.0006703031783997437}, {"caption": "\\ofoot{}", "snippet": "\\ofoot{$1}", "meta": "scrpage2-cmd", "score": 0.000605620621498142}, {"caption": "\\ofoot[]{}", "snippet": "\\ofoot[$1]{$2}", "meta": "scrpage2-cmd", "score": 0.000605620621498142}, {"caption": "\\ohead{}", "snippet": "\\ohead{$1}", "meta": "scrpage2-cmd", "score": 0.004845161937670253}, {"caption": "\\ohead[]{}", "snippet": "\\ohead[$1]{$2}", "meta": "scrpage2-cmd", "score": 0.004845161937670253}, {"caption": "\\headfont", "snippet": "\\headfont", "meta": "scrpage2-cmd", "score": 0.0011116915941419892}, {"caption": "\\setheadsepline{}", "snippet": "\\setheadsepline{$1}", "meta": "scrpage2-cmd", "score": 0.00023538827295624133}, {"caption": "\\clearscrheadings", "snippet": "\\clearscrheadings", "meta": "scrpage2-cmd", "score": 0.0003679125016983611}, {"caption": "\\clearscrheadfoot", "snippet": "\\clearscrheadfoot", "meta": "scrpage2-cmd", "score": 0.000558377093879783}, {"caption": "\\pagemark", "snippet": "\\pagemark", "meta": "scrpage2-cmd", "score": 0.0017520841736604843}, {"caption": "\\chead{}", "snippet": "\\chead{$1}", "meta": "scrpage2-cmd", "score": 0.00755042164734884}, {"caption": "\\clearscrplain", "snippet": "\\clearscrplain", "meta": "scrpage2-cmd", "score": 0.00013252422874211978}, {"caption": "\\ifoot{}", "snippet": "\\ifoot{$1}", "meta": "scrpage2-cmd", "score": 0.0003620142864171218}, {"caption": "\\ifoot[]{}", "snippet": "\\ifoot[$1]{$2}", "meta": "scrpage2-cmd", "score": 0.0003620142864171218}, {"caption": "\\ihead{}", "snippet": "\\ihead{$1}", "meta": "scrpage2-cmd", "score": 0.0004507603139230655}, {"caption": "\\ihead[]{}", "snippet": "\\ihead[$1]{$2}", "meta": "scrpage2-cmd", "score": 0.0004507603139230655}, {"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "scrpage2-cmd", "score": 0.013411641301057813}], "pbox": [{"caption": "\\pbox{}{}", "snippet": "\\pbox{$1}{$2}", "meta": "pbox-cmd", "score": 0.0010883030320478486}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "pbox-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "pbox-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "pbox-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "pbox-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "pbox-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "pbox-cmd", "score": 0.0018957469739775527}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "pbox-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "pbox-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "pbox-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pbox-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "pbox-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "pbox-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "pbox-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "pbox-cmd", "score": 0.028955796305270766}], "esint": [{"caption": "\\int", "snippet": "\\int", "meta": "esint-cmd", "score": 0.11946660537765894}, {"caption": "\\iint", "snippet": "\\iint", "meta": "esint-cmd", "score": 0.003916494384710151}, {"caption": "\\varoiint", "snippet": "\\varoiint", "meta": "esint-cmd", "score": 0.0001069175284516453}, {"caption": "\\iiint", "snippet": "\\iiint", "meta": "esint-cmd", "score": 0.0010383179918633135}, {"caption": "\\oint", "snippet": "\\oint", "meta": "esint-cmd", "score": 0.0028650540724050534}, {"caption": "\\oiint", "snippet": "\\oiint", "meta": "esint-cmd", "score": 7.127835230109687e-05}], "algorithmicx": [{"caption": "\\algrenewcommand", "snippet": "\\algrenewcommand", "meta": "algorithmicx-cmd", "score": 0.0019861803661869416}, {"caption": "\\Statex", "snippet": "\\Statex", "meta": "algorithmicx-cmd", "score": 0.008622777195102994}, {"caption": "\\BState{}", "snippet": "\\BState{$1}", "meta": "algorithmicx-cmd", "score": 0.0008685861525307122}, {"caption": "\\BState", "snippet": "\\BState", "meta": "algorithmicx-cmd", "score": 0.0008685861525307122}, {"caption": "\\algloopdefx{}[][]{}", "snippet": "\\algloopdefx{$1}[$2][$3]{$4}", "meta": "algorithmicx-cmd", "score": 0.00025315185701145097}, {"caption": "\\algnewcommand", "snippet": "\\algnewcommand", "meta": "algorithmicx-cmd", "score": 0.0030209395012065327}, {"caption": "\\algnewcommand{}[]{}", "snippet": "\\algnewcommand{$1}[$2]{$3}", "meta": "algorithmicx-cmd", "score": 0.0030209395012065327}, {"caption": "\\Comment{}", "snippet": "\\Comment{$1}", "meta": "algorithmicx-cmd", "score": 0.005178604573219454}, {"caption": "\\algblockdefx{}{}[]", "snippet": "\\algblockdefx{$1}{$2}[$3]", "meta": "algorithmicx-cmd", "score": 0.00025315185701145097}, {"caption": "\\algrenewtext{}{}", "snippet": "\\algrenewtext{$1}{$2}", "meta": "algorithmicx-cmd", "score": 0.0024415580558825975}, {"caption": "\\algrenewtext{}[]{}", "snippet": "\\algrenewtext{$1}[$2]{$3}", "meta": "algorithmicx-cmd", "score": 0.0024415580558825975}, {"caption": "\\algblock{}{}", "snippet": "\\algblock{$1}{$2}", "meta": "algorithmicx-cmd", "score": 0.0007916858220314837}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algorithmicx-cmd", "score": 0.008565354665444157}, {"caption": "\\algdef{}[]{}{}{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "algorithmicx-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}{}[]{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}[$5]{$6}{$7}", "meta": "algorithmicx-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}[]{}", "snippet": "\\algdef{$1}[$2]{$3}[$4]{$5}", "meta": "algorithmicx-cmd", "score": 0.0003102486920966127}, {"caption": "\\algtext{}", "snippet": "\\algtext{$1}", "meta": "algorithmicx-cmd", "score": 0.0005463612015579842}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algorithmicx-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algorithmicx-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algorithmicx-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algorithmicx-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algorithmicx-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algorithmicx-cmd", "score": 0.0018957469739775527}], "bibentry": [{"caption": "\\bibentry{}", "snippet": "\\bibentry{$1}", "meta": "bibentry-cmd", "score": 0.002786693424998083}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "bibentry-cmd", "score": 0.13586474005868793}, {"caption": "\\item", "snippet": "\\item", "meta": "bibentry-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "bibentry-cmd", "score": 3.800886892251021}, {"caption": "\\nobibliography", "snippet": "\\nobibliography", "meta": "bibentry-cmd", "score": 0.0009870472135074372}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "bibentry-cmd", "score": 0.2659628337907604}, {"caption": "\\doi{}", "snippet": "\\doi{$1}", "meta": "bibentry-cmd", "score": 0.004001210811454663}, {"caption": "\\doi", "snippet": "\\doi", "meta": "bibentry-cmd", "score": 0.004001210811454663}], "txfonts": [{"caption": "\\sqrt{}", "snippet": "\\sqrt{$1}", "meta": "txfonts-cmd", "score": 0.20240160977404634}], "ngerman": [{"caption": "\\figurename", "snippet": "\\figurename", "meta": "ngerman-cmd", "score": 0.008169568707145965}, {"caption": "\\figurename{}", "snippet": "\\figurename{$1}", "meta": "ngerman-cmd", "score": 0.008169568707145965}, {"caption": "\\indexname", "snippet": "\\indexname", "meta": "ngerman-cmd", "score": 0.0007544109314450072}, {"caption": "\\glqq", "snippet": "\\glqq", "meta": "ngerman-cmd", "score": 0.0039133256714254504}, {"caption": "\\glqq{}", "snippet": "\\glqq{$1}", "meta": "ngerman-cmd", "score": 0.0039133256714254504}, {"caption": "\\today", "snippet": "\\today", "meta": "ngerman-cmd", "score": 0.10733849317324783}, {"caption": "\\bibname", "snippet": "\\bibname", "meta": "ngerman-cmd", "score": 0.007599529252128519}, {"caption": "\\bibname{}", "snippet": "\\bibname{$1}", "meta": "ngerman-cmd", "score": 0.007599529252128519}, {"caption": "\\captionsngerman{}", "snippet": "\\captionsngerman{$1}", "meta": "ngerman-cmd", "score": 0.00010171098214158578}, {"caption": "\\grqq", "snippet": "\\grqq", "meta": "ngerman-cmd", "score": 0.006659522189248266}, {"caption": "\\grqq{}", "snippet": "\\grqq{$1}", "meta": "ngerman-cmd", "score": 0.006659522189248266}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "ngerman-cmd", "score": 0.0029238994233674776}], "eucal": [{"caption": "\\mathscr{}", "snippet": "\\mathscr{$1}", "meta": "eucal-cmd", "score": 0.025302230226027712}, {"caption": "\\mathcal{}", "snippet": "\\mathcal{$1}", "meta": "eucal-cmd", "score": 0.35084018920966636}], "ifluatex": [{"caption": "\\csname", "snippet": "\\csname", "meta": "ifluatex-cmd", "score": 0.008565354665444157}], "chemfig": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "chemfig-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemfig-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemfig-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chemfig-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chemfig-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chemfig-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chemfig-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chemfig-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemfig-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chemfig-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemfig-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chemfig-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chemfig-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chemfig-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "chemfig-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemfig-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemfig-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "chemfig-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "chemfig-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "chemfig-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "chemfig-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "chemfig-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemfig-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "chemfig-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "chemfig-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemfig-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "chemfig-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "chemfig-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chemfig-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chemfig-cmd", "score": 0.2864294797053033}], "abstract": [{"caption": "\\abstractnamefont", "snippet": "\\abstractnamefont", "meta": "abstract-cmd", "score": 6.2350576842596716e-06}], "tikz-cd": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cd-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-cd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-cd-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-cd-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-cd-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-cd-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-cd-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-cd-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cd-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-cd-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-cd-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-cd-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-cd-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-cd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-cd-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-cd-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-cd-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-cd-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-cd-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-cd-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-cd-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-cd-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-cd-cmd", "score": 0.2864294797053033}], "flowfram": [{"caption": "\\framebreak", "snippet": "\\framebreak", "meta": "flowfram-cmd", "score": 0.004019097827091264}, {"caption": "\\newstaticframe{}{}{}{}", "snippet": "\\newstaticframe{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.0014762683341407986}, {"caption": "\\newflowframe{}{}{}{}[]", "snippet": "\\newflowframe{$1}{$2}{$3}{$4}[$5]", "meta": "flowfram-cmd", "score": 0.002952536668281597}, {"caption": "\\csname", "snippet": "\\csname", "meta": "flowfram-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "flowfram-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "flowfram-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "flowfram-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "flowfram-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "flowfram-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "flowfram-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "flowfram-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "flowfram-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "flowfram-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "flowfram-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "flowfram-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "flowfram-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "flowfram-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "flowfram-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "flowfram-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "flowfram-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "flowfram-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "flowfram-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "flowfram-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "flowfram-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "flowfram-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "flowfram-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "flowfram-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "flowfram-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "flowfram-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "flowfram-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "flowfram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "flowfram-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "flowfram-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "flowfram-cmd", "score": 0.004649150613625593}, {"caption": "\\afterpage{}", "snippet": "\\afterpage{$1}", "meta": "flowfram-cmd", "score": 0.0018578070791608345}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "flowfram-cmd", "score": 0.1789117552185788}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "flowfram-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "flowfram-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "flowfram-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "flowfram-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "flowfram-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "flowfram-cmd", "score": 0.0018957469739775527}], "marginnote": [{"caption": "\\marginnote{}", "snippet": "\\marginnote{$1}", "meta": "marginnote-cmd", "score": 0.010285502283803235}, {"caption": "\\marginnote", "snippet": "\\marginnote", "meta": "marginnote-cmd", "score": 0.010285502283803235}, {"caption": "\\raggedleftmarginnote", "snippet": "\\raggedleftmarginnote", "meta": "marginnote-cmd", "score": 0.0011268470793267921}], "xfrac": [{"caption": "\\sfrac{}{}", "snippet": "\\sfrac{$1}{$2}", "meta": "xfrac-cmd", "score": 0.0030164694688453453}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xfrac-cmd", "score": 0.00037306820619479756}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "xfrac-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "xfrac-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "xfrac-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xfrac-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xfrac-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xfrac-cmd", "score": 0.2864294797053033}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xfrac-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xfrac-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xfrac-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xfrac-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xfrac-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xfrac-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xfrac-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xfrac-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xfrac-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xfrac-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xfrac-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xfrac-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xfrac-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xfrac-cmd", "score": 0.004649150613625593}, {"caption": "\\do", "snippet": "\\do", "meta": "xfrac-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "xfrac-cmd", "score": 0.0063276692758974925}], "shortvrb": [{"caption": "\\MakeShortVerb{}", "snippet": "\\MakeShortVerb{$1}", "meta": "shortvrb-cmd", "score": 0.0002890733176655595}, {"caption": "\\do", "snippet": "\\do", "meta": "shortvrb-cmd", "score": 0.009278344180101056}], "animate": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "animate-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "animate-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "animate-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "animate-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "animate-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "animate-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "animate-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "animate-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "animate-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "animate-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "animate-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "animate-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "animate-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "animate-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "animate-cmd", "score": 0.004649150613625593}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "animate-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "animate-cmd", "score": 0.2864294797053033}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "animate-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "animate-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "animate-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "animate-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "animate-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "animate-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "animate-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "animate-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "animate-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "animate-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "animate-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "animate-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "animate-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "animate-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "animate-cmd", "score": 0.0018957469739775527}, {"caption": "\\csname", "snippet": "\\csname", "meta": "animate-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "animate-cmd", "score": 0.008565354665444157}], "euscript": [{"caption": "\\mathscr{}", "snippet": "\\mathscr{$1}", "meta": "euscript-cmd", "score": 0.025302230226027712}, {"caption": "\\mathcal{}", "snippet": "\\mathcal{$1}", "meta": "euscript-cmd", "score": 0.35084018920966636}], "hhline": [{"caption": "\\hhline{}", "snippet": "\\hhline{$1}", "meta": "hhline-cmd", "score": 0.0004816338278157677}], "subfiles": [{"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "subfiles-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "subfiles-cmd", "score": 1.4425339817971206}, {"caption": "\\subfile{}", "snippet": "\\subfile{$1}", "meta": "subfiles-cmd", "score": 0.03337062633525651}, {"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "subfiles-cmd", "score": 0.0022216421267780076}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "subfiles-cmd", "score": 0.0072203369120285256}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "subfiles-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "subfiles-cmd", "score": 0.021170869458413965}, {"caption": "\\par", "snippet": "\\par", "meta": "subfiles-cmd", "score": 0.413853376001159}, {"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "subfiles-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "subfiles-cmd", "score": 0.0024547099784948665}], "accents": [{"caption": "\\underaccent{}{}", "snippet": "\\underaccent{$1}{$2}", "meta": "accents-cmd", "score": 0.00109513727836357}], "theorem": [{"caption": "\\theorembodyfont{}", "snippet": "\\theorembodyfont{$1}", "meta": "theorem-cmd", "score": 0.00047103366488576113}], "metalogo": [{"caption": "\\XeTeX", "snippet": "\\XeTeX", "meta": "metalogo-cmd", "score": 0.0010635559050357936}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "metalogo-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "metalogo-cmd", "score": 0.02873756018238537}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "metalogo-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "metalogo-cmd", "score": 0.2334089308452787}, {"caption": "\\XeLaTeX", "snippet": "\\XeLaTeX", "meta": "metalogo-cmd", "score": 0.002009786035379175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "metalogo-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "metalogo-cmd", "score": 0.00037306820619479756}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "metalogo-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "metalogo-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "metalogo-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "metalogo-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "metalogo-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "metalogo-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "metalogo-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "metalogo-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "metalogo-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "metalogo-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "metalogo-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "metalogo-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "metalogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "metalogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "metalogo-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "metalogo-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "metalogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "metalogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "metalogo-cmd", "score": 0.004719094298848707}], "bookmark": [{"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "bookmark-cmd", "score": 0.006492248863367502}, {"caption": "\\bookmarkget{}", "snippet": "\\bookmarkget{$1}", "meta": "bookmark-cmd", "score": 0.00026847053008917257}, {"caption": "\\bookmarksetup{}", "snippet": "\\bookmarksetup{$1}", "meta": "bookmark-cmd", "score": 0.001134118016265821}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "bookmark-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "bookmark-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "bookmark-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "bookmark-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "bookmark-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "bookmark-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "bookmark-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "bookmark-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "bookmark-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "bookmark-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "bookmark-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "bookmark-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "bookmark-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "bookmark-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "bookmark-cmd", "score": 0.009472569279662113}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "bookmark-cmd", "score": 0.006492248863367502}, {"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "bookmark-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "bookmark-cmd", "score": 0.00014582556188448738}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "bookmark-cmd", "score": 0.006963729684667191}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "bookmark-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "bookmark-cmd", "score": 0.005553384455935491}, {"caption": "\\string", "snippet": "\\string", "meta": "bookmark-cmd", "score": 0.001042697111754002}, {"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "bookmark-cmd", "score": 0.017289599800633146}, {"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "bookmark-cmd", "score": 0.001509072212764015}, {"caption": "\\do", "snippet": "\\do", "meta": "bookmark-cmd", "score": 0.009278344180101056}, {"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "bookmark-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "bookmark-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "bookmark-cmd", "score": 7.849662248028187}, {"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "bookmark-cmd", "score": 0.00978652043902115}, {"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "bookmark-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "bookmark-cmd", "score": 0.00012704528567339081}, {"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "bookmark-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "bookmark-cmd", "score": 0.00018777198999871106}, {"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "bookmark-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "bookmark-cmd", "score": 0.02873756018238537}, {"caption": "\\protect", "snippet": "\\protect", "meta": "bookmark-cmd", "score": 0.0200686676229443}, {"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "bookmark-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "bookmark-cmd", "score": 7.950698053641679e-05}, {"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "bookmark-cmd", "score": 0.00029737672328168955}, {"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "bookmark-cmd", "score": 0.0073781967296121}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "bookmark-cmd", "score": 0.002140559856649122}, {"caption": "\\alph", "snippet": "\\alph", "meta": "bookmark-cmd", "score": 0.01034327266194849}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "bookmark-cmd", "score": 0.01034327266194849}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "bookmark-cmd", "score": 0.019788865471151957}, {"caption": "\\item", "snippet": "\\item", "meta": "bookmark-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "bookmark-cmd", "score": 3.800886892251021}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "bookmark-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "bookmark-cmd", "score": 0.2334089308452787}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "bookmark-cmd", "score": 1.2569477427490174}, {"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "bookmark-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "bookmark-cmd", "score": 0.0019832324299155183}, {"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "bookmark-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "bookmark-cmd", "score": 0.007928096378157487}, {"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "bookmark-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "bookmark-cmd", "score": 0.0003680857021151614}, {"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "bookmark-cmd", "score": 0.009652820108904094}, {"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "bookmark-cmd", "score": 0.7504160124360846}, {"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "bookmark-cmd", "score": 0.0005446476945175932}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "bookmark-cmd", "score": 0.13586474005868793}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "bookmark-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "bookmark-cmd", "score": 0.8973590434087177}, {"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "bookmark-cmd", "score": 0.27111130260612365}, {"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "bookmark-cmd", "score": 0.0038703587462843594}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}, {"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "bookmark-cmd", "score": 0.03741172773691362}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "bookmark-cmd", "score": 0.0004995635515943437}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "bookmark-cmd", "score": 7.847906405228455}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "bookmark-cmd", "score": 0.0174633138331273}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "bookmark-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "bookmark-cmd", "score": 0.006776001543888959}, {"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "bookmark-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "bookmark-cmd", "score": 6.006262128895586e-05}, {"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "bookmark-cmd", "score": 0.00017906650306643613}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "bookmark-cmd", "score": 0.20852115286477566}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "bookmark-cmd", "score": 1.4380093454211778}, {"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "bookmark-cmd", "score": 0.002233258780143355}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "bookmark-cmd", "score": 0.002233258780143355}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "bookmark-cmd", "score": 0.047007158741781095}, {"caption": "\\MP", "snippet": "\\MP", "meta": "bookmark-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "bookmark-cmd", "score": 0.00018344383742255004}, {"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "bookmark-cmd", "score": 0.0005446476945175932}, {"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "bookmark-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "bookmark-cmd", "score": 0.0018503938529945614}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "bookmark-cmd", "score": 0.07503475348393239}, {"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "bookmark-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "bookmark-cmd", "score": 0.0012546605780895737}, {"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "bookmark-cmd", "score": 0.004515152477030062}, {"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "bookmark-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "bookmark-cmd", "score": 0.02445837629741638}, {"caption": "\\newline", "snippet": "\\newline", "meta": "bookmark-cmd", "score": 0.3311721696201715}, {"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "bookmark-cmd", "score": 0.06967310843464661}, {"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "bookmark-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "bookmark-cmd", "score": 0.0012064581899162352}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "bookmark-cmd", "score": 0.9202908262245683}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bookmark-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "bookmark-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "bookmark-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "bookmark-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bookmark-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bookmark-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bookmark-cmd", "score": 0.00530510025314411}], "anysize": [{"caption": "\\marginsize{}{}{}{}", "snippet": "\\marginsize{$1}{$2}{$3}{$4}", "meta": "anysize-cmd", "score": 0.0012034744434699038}], "diagbox": [{"caption": "\\diagbox[]{}{}", "snippet": "\\diagbox[$1]{$2}{$3}", "meta": "diagbox-cmd", "score": 2.2176553306779127e-05}, {"caption": "\\backslashbox{}{}", "snippet": "\\backslashbox{$1}{$2}", "meta": "diagbox-cmd", "score": 0.0005060776550832729}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "diagbox-cmd", "score": 0.00037306820619479756}, {"caption": "\\Line", "snippet": "\\Line", "meta": "diagbox-cmd", "score": 0.0006078790177929149}, {"caption": "\\polygon", "snippet": "\\polygon", "meta": "diagbox-cmd", "score": 0.0008987552240147395}, {"caption": "\\line", "snippet": "\\line", "meta": "diagbox-cmd", "score": 0.014519741542622297}, {"caption": "\\polyline", "snippet": "\\polyline", "meta": "diagbox-cmd", "score": 0.00022468880600368487}, {"caption": "\\vector", "snippet": "\\vector", "meta": "diagbox-cmd", "score": 0.002970308722584179}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "diagbox-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "diagbox-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "diagbox-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "diagbox-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "diagbox-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "diagbox-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "diagbox-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "diagbox-cmd", "score": 0.018615449342361392}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "diagbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "diagbox-cmd", "score": 0.021170869458413965}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "diagbox-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "diagbox-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "diagbox-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "diagbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "diagbox-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "diagbox-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "diagbox-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "diagbox-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "diagbox-cmd", "score": 0.028955796305270766}], "commath": [{"caption": "\\dod{}{}", "snippet": "\\dod{$1}{$2}", "meta": "commath-cmd", "score": 7.950032807135384e-05}, {"caption": "\\dpd{}{}", "snippet": "\\dpd{$1}{$2}", "meta": "commath-cmd", "score": 0.00022966761442835552}, {"caption": "\\dpd[]{}{}", "snippet": "\\dpd[$1]{$2}{$3}", "meta": "commath-cmd", "score": 0.00022966761442835552}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "commath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "commath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "commath-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "commath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "commath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "commath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "commath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "commath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "commath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "commath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "commath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "commath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "commath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "commath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "commath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "commath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "commath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "commath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "commath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "commath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "commath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "commath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "commath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "commath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "commath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "commath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "commath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "commath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "commath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "commath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "commath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "commath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "commath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "commath-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "commath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "commath-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "commath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "commath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "commath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "commath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "commath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "commath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "commath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "commath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "commath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "commath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "commath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "commath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "commath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "commath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "commath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "commath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "commath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "commath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "commath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "commath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "commath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "commath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "commath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "commath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "commath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "commath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "commath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "commath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "commath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "commath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "commath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "commath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "commath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "commath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "commath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "commath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "commath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "commath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "commath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "commath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "commath-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "commath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "commath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "commath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "commath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "commath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "commath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "commath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "commath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "commath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "commath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "commath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "commath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "commath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "commath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "commath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "commath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "commath-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "commath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "commath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "commath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "commath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "commath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "commath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "commath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "commath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "commath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "commath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "commath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "commath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "commath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "commath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "commath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "commath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "commath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "commath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "commath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "commath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "commath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "commath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "commath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "commath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "commath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "commath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "commath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "commath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "commath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "commath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "commath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "commath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "commath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "commath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "commath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "commath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "commath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "commath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "commath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "commath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "commath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "commath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "commath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "commath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "commath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "commath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "commath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "commath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "commath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "commath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "commath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "commath-cmd", "score": 0.0004286136584068833}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "commath-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "commath-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "commath-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "commath-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "commath-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "commath-cmd", "score": 0.0018957469739775527}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "commath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "commath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "commath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "commath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "commath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "commath-cmd", "score": 0.0063276692758974925}], "breqn": [{"caption": "\\biggl", "snippet": "\\biggl", "meta": "breqn-cmd", "score": 0.0016066581118686831}, {"caption": "\\biggl[]", "snippet": "\\biggl[$1]", "meta": "breqn-cmd", "score": 0.0016066581118686831}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "breqn-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "breqn-cmd", "score": 0.015507614799858266}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "breqn-cmd", "score": 7.847906405228455}, {"caption": "\\Big", "snippet": "\\Big", "meta": "breqn-cmd", "score": 0.050370758781422345}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "breqn-cmd", "score": 0.04318078602869565}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "breqn-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "breqn-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "breqn-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "breqn-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "breqn-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "breqn-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "breqn-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "breqn-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "breqn-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "breqn-cmd", "score": 0.028955796305270766}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "breqn-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "breqn-cmd", "score": 0.2864294797053033}], "ClearSans": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "ClearSans-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ClearSans-cmd", "score": 0.008565354665444157}], "ccicons": [{"caption": "\\ccbynd", "snippet": "\\ccbynd", "meta": "ccicons-cmd", "score": 0.0002103469673225986}, {"caption": "\\ccbysa", "snippet": "\\ccbysa", "meta": "ccicons-cmd", "score": 0.00016986782584471025}], "varioref": [{"caption": "\\csname", "snippet": "\\csname", "meta": "varioref-cmd", "score": 0.008565354665444157}], "SIunits": [{"caption": "\\micro", "snippet": "\\micro", "meta": "SIunits-cmd", "score": 0.011051971930487929}, {"caption": "\\meter", "snippet": "\\meter", "meta": "SIunits-cmd", "score": 0.012499244923238213}, {"caption": "\\cdot", "snippet": "\\cdot", "meta": "SIunits-cmd", "score": 0.23029085545522762}, {"caption": "\\degreecelsius", "snippet": "\\degreecelsius", "meta": "SIunits-cmd", "score": 0.002130669712103909}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "SIunits-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "SIunits-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "SIunits-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "SIunits-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "SIunits-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "SIunits-cmd", "score": 0.0063276692758974925}], "alltt": [{"caption": "\\par", "snippet": "\\par", "meta": "alltt-cmd", "score": 0.413853376001159}], "fancyvrb": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fancyvrb-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fancyvrb-cmd", "score": 0.021170869458413965}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "fancyvrb-cmd", "score": 0.002140559856649122}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "fancyvrb-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "fancyvrb-cmd", "score": 0.008565354665444157}, {"caption": "\\fvset{}", "snippet": "\\fvset{$1}", "meta": "fancyvrb-cmd", "score": 0.00015476887282479622}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "fancyvrb-cmd", "score": 0.00037306820619479756}], "textgreek": [{"caption": "\\temp", "snippet": "\\temp", "meta": "textgreek-cmd", "score": 0.0003566413345844499}, {"caption": "\\temp{}", "snippet": "\\temp{$1}", "meta": "textgreek-cmd", "score": 0.0003566413345844499}], "endnotes": [{"caption": "\\endnote", "snippet": "\\endnote", "meta": "endnotes-cmd", "score": 4.002553629215439e-05}, {"caption": "\\theendnotes", "snippet": "\\theendnotes", "meta": "endnotes-cmd", "score": 0.0002788252334941383}], "leading": [{"caption": "\\leading{}", "snippet": "\\leading{$1}", "meta": "leading-cmd", "score": 0.00029077374894594517}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "leading-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "leading-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "leading-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "leading-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "leading-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "leading-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "leading-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "leading-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "leading-cmd", "score": 0.028955796305270766}], "esvect": [{"caption": "\\vv", "snippet": "\\vv", "meta": "esvect-cmd", "score": 0.003087420708479709}, {"caption": "\\vv{}", "snippet": "\\vv{$1}", "meta": "esvect-cmd", "score": 0.003087420708479709}], "lettrine": [{"caption": "\\LettrineFontHook", "snippet": "\\LettrineFontHook", "meta": "lettrine-cmd", "score": 9.103413871235853e-05}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "lettrine-cmd", "score": 0.20852115286477566}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "lettrine-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "lettrine-cmd", "score": 0.2864294797053033}, {"caption": "\\lettrine[]{}{}", "snippet": "\\lettrine[$1]{$2}{$3}", "meta": "lettrine-cmd", "score": 0.0028028146688245602}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "lettrine-cmd", "score": 0.00037306820619479756}], "pgfopts": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfopts-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfopts-cmd", "score": 0.021170869458413965}], "tabulary": [{"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabulary-cmd", "score": 0.014532521139459619}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabulary-cmd", "score": 0.5473606021405326}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tabulary-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tabulary-cmd", "score": 0.021170869458413965}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "tabulary-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "tabulary-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "tabulary-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "tabulary-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "tabulary-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tabulary-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "tabulary-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "tabulary-cmd", "score": 0.018615449342361392}], "grffile": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "grffile-cmd", "score": 0.00021116765384691477}, {"caption": "\\empty", "snippet": "\\empty", "meta": "grffile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "grffile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "grffile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "grffile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "grffile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "grffile-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "grffile-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "grffile-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "grffile-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "grffile-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "grffile-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "grffile-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "grffile-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "grffile-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "grffile-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "grffile-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "grffile-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "grffile-cmd", "score": 0.004649150613625593}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "grffile-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "grffile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "grffile-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "grffile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "grffile-cmd", "score": 0.021170869458413965}], "pgfgantt": [{"caption": "\\gantttitlecalendar{}", "snippet": "\\gantttitlecalendar{$1}", "meta": "pgfgantt-cmd", "score": 0.00027821409061195467}, {"caption": "\\ganttset{}", "snippet": "\\ganttset{$1}", "meta": "pgfgantt-cmd", "score": 0.0002492292297037303}, {"caption": "\\gantttitlelist[]{}{}", "snippet": "\\gantttitlelist[$1]{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.00046430963549633653}, {"caption": "\\gantttitlelist{}{}", "snippet": "\\gantttitlelist{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.00046430963549633653}, {"caption": "\\ganttlink[]{}{}", "snippet": "\\ganttlink[$1]{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.0011494045501518014}, {"caption": "\\newganttchartelement{}{}", "snippet": "\\newganttchartelement{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.00023651453263545777}, {"caption": "\\gantttitle{}{}", "snippet": "\\gantttitle{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.001804531670553746}, {"caption": "\\gantttitle[]{}{}", "snippet": "\\gantttitle[$1]{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.001804531670553746}, {"caption": "\\setganttlinklabel{}{}", "snippet": "\\setganttlinklabel{$1}{$2}", "meta": "pgfgantt-cmd", "score": 9.045112044064169e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfgantt-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfgantt-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfgantt-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfgantt-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfgantt-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfgantt-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfgantt-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfgantt-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfgantt-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfgantt-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfgantt-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfgantt-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfgantt-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfgantt-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfgantt-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfgantt-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfgantt-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfgantt-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfgantt-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfgantt-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfgantt-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfgantt-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfgantt-cmd", "score": 0.2864294797053033}], "circuitikz": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "circuitikz-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "circuitikz-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "circuitikz-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "circuitikz-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "circuitikz-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "circuitikz-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "circuitikz-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "circuitikz-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "circuitikz-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "circuitikz-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "circuitikz-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "circuitikz-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "circuitikz-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "circuitikz-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "circuitikz-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "circuitikz-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "circuitikz-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "circuitikz-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "circuitikz-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "circuitikz-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "circuitikz-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "circuitikz-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "circuitikz-cmd", "score": 0.2864294797053033}], "hypcap": [{"caption": "\\csname", "snippet": "\\csname", "meta": "hypcap-cmd", "score": 0.008565354665444157}], "scrlayer-scrpage": [{"caption": "\\lofoot{}", "snippet": "\\lofoot{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.00011911213812243537}, {"caption": "\\rofoot{}", "snippet": "\\rofoot{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.00021082185485863327}, {"caption": "\\clearpairofpagestyles", "snippet": "\\clearpairofpagestyles", "meta": "scrlayer-scrpage-cmd", "score": 8.874602750594376e-05}, {"caption": "\\ihead{}", "snippet": "\\ihead{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.0004507603139230655}, {"caption": "\\ihead[]{}", "snippet": "\\ihead[$1]{$2}", "meta": "scrlayer-scrpage-cmd", "score": 0.0004507603139230655}, {"caption": "\\cofoot{}", "snippet": "\\cofoot{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.00021082185485863327}, {"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.013411641301057813}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "scrlayer-scrpage-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "scrlayer-scrpage-cmd", "score": 0.1789117552185788}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "scrlayer-scrpage-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "scrlayer-scrpage-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.000396664302361659}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scrlayer-scrpage-cmd", "score": 0.00037306820619479756}, {"caption": "\\automark[]{}", "snippet": "\\automark[$1]{$2}", "meta": "scrlayer-scrpage-cmd", "score": 0.0006703031783997437}, {"caption": "\\automark{}", "snippet": "\\automark{$1}", "meta": "scrlayer-scrpage-cmd", "score": 0.0006703031783997437}, {"caption": "\\pagemark", "snippet": "\\pagemark", "meta": "scrlayer-scrpage-cmd", "score": 0.0017520841736604843}], "amsgen": [{"caption": "\\do", "snippet": "\\do", "meta": "amsgen-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsgen-cmd", "score": 0.0063276692758974925}], "tipa": [{"caption": "\\textipa{}", "snippet": "\\textipa{$1}", "meta": "tipa-cmd", "score": 0.0028202799587687334}], "appendixnumberbeamer": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "appendixnumberbeamer-cmd", "score": 0.047007158741781095}, {"caption": "\\inserttotalframenumber", "snippet": "\\inserttotalframenumber", "meta": "appendixnumberbeamer-cmd", "score": 0.0008756113669543194}], "totcount": [{"caption": "\\totvalue{}", "snippet": "\\totvalue{$1}", "meta": "totcount-cmd", "score": 0.000325977535138643}, {"caption": "\\newtotcounter{}", "snippet": "\\newtotcounter{$1}", "meta": "totcount-cmd", "score": 0.004398151085448998}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "totcount-cmd", "score": 0.00037306820619479756}], "atbegshi": [{"caption": "\\empty", "snippet": "\\empty", "meta": "atbegshi-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "atbegshi-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "atbegshi-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "atbegshi-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "atbegshi-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "atbegshi-cmd", "score": 0.008565354665444157}], "environ": [{"caption": "\\csname", "snippet": "\\csname", "meta": "environ-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "environ-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "environ-cmd", "score": 0.021170869458413965}], "arydshln": [{"caption": "\\hdashline", "snippet": "\\hdashline", "meta": "arydshln-cmd", "score": 3.1727559255976046e-05}, {"caption": "\\arrayrulecolor{}", "snippet": "\\arrayrulecolor{$1}", "meta": "arydshln-cmd", "score": 0.008538501902241319}, {"caption": "\\arrayrulecolor[]{}", "snippet": "\\arrayrulecolor[$1]{$2}", "meta": "arydshln-cmd", "score": 0.008538501902241319}, {"caption": "\\hline", "snippet": "\\hline", "meta": "arydshln-cmd", "score": 1.3209538327406387}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "arydshln-cmd", "score": 0.5473606021405326}, {"caption": "\\cline{}", "snippet": "\\cline{$1}", "meta": "arydshln-cmd", "score": 0.07276573550543858}], "fp": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fp-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fp-cmd", "score": 0.021170869458413965}], "here": [{"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "here-cmd", "score": 0.0009837365348002915}, {"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "here-cmd", "score": 0.0005815474978918903}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "here-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "here-cmd", "score": 0.0015470917047414941}, {"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "here-cmd", "score": 0.0011934321931750752}, {"caption": "\\csname", "snippet": "\\csname", "meta": "here-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "here-cmd", "score": 1.2569477427490174}, {"caption": "\\newfloat{}{}{}", "snippet": "\\newfloat{$1}{$2}{$3}", "meta": "here-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat", "snippet": "\\newfloat", "meta": "here-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat{}", "snippet": "\\newfloat{$1}", "meta": "here-cmd", "score": 0.0012745874472536625}], "layout": [{"caption": "\\layout", "snippet": "\\layout", "meta": "layout-cmd", "score": 0.0003951770756385293}, {"caption": "\\layout{}", "snippet": "\\layout{$1}", "meta": "layout-cmd", "score": 0.0003951770756385293}], "multibib": [{"caption": "\\newcites{}{}", "snippet": "\\newcites{$1}{$2}", "meta": "multibib-cmd", "score": 0.0024438508435048224}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "multibib-cmd", "score": 0.2659628337907604}], "tgpagella": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgpagella-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgpagella-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgpagella-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgpagella-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgpagella-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgpagella-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgpagella-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgpagella-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgpagella-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgpagella-cmd", "score": 0.021170869458413965}], "minitoc": [{"caption": "\\addstarredchapter{}", "snippet": "\\addstarredchapter{$1}", "meta": "minitoc-cmd", "score": 0.0009796486230293261}, {"caption": "\\minitoc", "snippet": "\\minitoc", "meta": "minitoc-cmd", "score": 0.001626371504530358}, {"caption": "\\dominitoc", "snippet": "\\dominitoc", "meta": "minitoc-cmd", "score": 0.0006984399207241325}, {"caption": "\\mtcaddchapter", "snippet": "\\mtcaddchapter", "meta": "minitoc-cmd", "score": 9.045112044064169e-05}, {"caption": "\\listoffigures", "snippet": "\\listoffigures", "meta": "minitoc-cmd", "score": 0.03447318897846567}, {"caption": "\\listoftables", "snippet": "\\listoftables", "meta": "minitoc-cmd", "score": 0.02104656820469027}, {"caption": "\\tableofcontents", "snippet": "\\tableofcontents", "meta": "minitoc-cmd", "score": 0.13360595130994957}, {"caption": "\\adjustmtc", "snippet": "\\adjustmtc", "meta": "minitoc-cmd", "score": 0.00015075186740106945}, {"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "minitoc-cmd", "score": 3.0952612541683835}], "nameref": [{"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "nameref-cmd", "score": 0.009472569279662113}, {"caption": "\\protect", "snippet": "\\protect", "meta": "nameref-cmd", "score": 0.0200686676229443}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "nameref-cmd", "score": 1.4380093454211778}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "nameref-cmd", "score": 0.019788865471151957}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "nameref-cmd", "score": 1.897791904799601}, {"caption": "\\thepage", "snippet": "\\thepage", "meta": "nameref-cmd", "score": 0.0591555998103519}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nameref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "nameref-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "nameref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "nameref-cmd", "score": 0.021170869458413965}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "nameref-cmd", "score": 0.07503475348393239}, {"caption": "\\empty", "snippet": "\\empty", "meta": "nameref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "nameref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nameref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "nameref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "nameref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nameref-cmd", "score": 0.008565354665444157}], "ntheorem": [{"caption": "\\theoremclass{}", "snippet": "\\theoremclass{$1}", "meta": "ntheorem-cmd", "score": 0.0001448542182198375}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "ntheorem-cmd", "score": 0.06345266254167037}, {"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "ntheorem-cmd", "score": 0.02533412165007986}, {"caption": "\\newshadedtheorem{}{}", "snippet": "\\newshadedtheorem{$1}{$2}", "meta": "ntheorem-cmd", "score": 0.0001632850673327423}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "ntheorem-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "ntheorem-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "ntheorem-cmd", "score": 0.215689795055434}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "ntheorem-cmd", "score": 1.897791904799601}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "ntheorem-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "ntheorem-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "ntheorem-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "ntheorem-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "ntheorem-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "ntheorem-cmd", "score": 0.0018957469739775527}], "tabto": [{"caption": "\\tab", "snippet": "\\tab", "meta": "tabto-cmd", "score": 0.016398493343291305}, {"caption": "\\tab{}", "snippet": "\\tab{$1}", "meta": "tabto-cmd", "score": 0.016398493343291305}, {"caption": "\\NumTabs{}", "snippet": "\\NumTabs{$1}", "meta": "tabto-cmd", "score": 0.00011350525217178113}, {"caption": "\\tabto{}{}", "snippet": "\\tabto{$1}{$2}", "meta": "tabto-cmd", "score": 0.002119919034744357}, {"caption": "\\tabto{}", "snippet": "\\tabto{$1}", "meta": "tabto-cmd", "score": 0.002119919034744357}], "emptypage": [{"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "emptypage-cmd", "score": 0.044016804142963585}], "abntex2abrev": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "abntex2abrev-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "abntex2abrev-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "abntex2abrev-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "abntex2abrev-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "abntex2abrev-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "abntex2abrev-cmd", "score": 0.0018957469739775527}], "scrhack": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "scrhack-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "scrhack-cmd", "score": 0.1789117552185788}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "scrhack-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "scrhack-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "scrhack-cmd", "score": 0.000396664302361659}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scrhack-cmd", "score": 0.00037306820619479756}, {"caption": "\\xpatchcmd{}{}{}{}{}", "snippet": "\\xpatchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "scrhack-cmd", "score": 0.0019344877752147675}, {"caption": "\\xpatchcmd", "snippet": "\\xpatchcmd", "meta": "scrhack-cmd", "score": 0.0019344877752147675}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "scrhack-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "scrhack-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "scrhack-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "scrhack-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "scrhack-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "scrhack-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "scrhack-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "scrhack-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "scrhack-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "scrhack-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "scrhack-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "scrhack-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "scrhack-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "scrhack-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "scrhack-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "scrhack-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "scrhack-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "scrhack-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "scrhack-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "scrhack-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "scrhack-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "scrhack-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "scrhack-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "scrhack-cmd", "score": 0.2864294797053033}], "nth": [{"caption": "\\nth{}", "snippet": "\\nth{$1}", "meta": "nth-cmd", "score": 0.0006155314043974968}, {"caption": "\\thesection", "snippet": "\\thesection", "meta": "nth-cmd", "score": 0.011068945893347528}, {"caption": "\\thesection{}", "snippet": "\\thesection{$1}", "meta": "nth-cmd", "score": 0.011068945893347528}], "showkeys": [{"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "showkeys-cmd", "score": 1.897791904799601}], "fncychap": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "fncychap-cmd", "score": 0.047007158741781095}, {"caption": "\\ChTitleVar{}", "snippet": "\\ChTitleVar{$1}", "meta": "fncychap-cmd", "score": 0.00047530324346933345}, {"caption": "\\thechapter", "snippet": "\\thechapter", "meta": "fncychap-cmd", "score": 0.011821300392639589}], "ae": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "ae-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "ae-cmd", "score": 0.008427383388519996}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "ae-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ae-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ae-cmd", "score": 0.021170869458413965}], "asymptote": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "asymptote-cmd", "score": 0.00037306820619479756}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "asymptote-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "asymptote-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "asymptote-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "asymptote-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "asymptote-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "asymptote-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "asymptote-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "asymptote-cmd", "score": 0.2864294797053033}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "asymptote-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "asymptote-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "asymptote-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "asymptote-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "asymptote-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "asymptote-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "asymptote-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "asymptote-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "asymptote-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "asymptote-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "asymptote-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "asymptote-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "asymptote-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "asymptote-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "asymptote-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "asymptote-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "asymptote-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "asymptote-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "asymptote-cmd", "score": 0.004649150613625593}, {"caption": "\\csname", "snippet": "\\csname", "meta": "asymptote-cmd", "score": 0.008565354665444157}], "truncate": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "truncate-cmd", "score": 0.04598628699063736}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "truncate-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "truncate-cmd", "score": 0.021170869458413965}], "xpatch": [{"caption": "\\xpatchcmd{}{}{}{}{}", "snippet": "\\xpatchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "xpatch-cmd", "score": 0.0019344877752147675}, {"caption": "\\xpatchcmd", "snippet": "\\xpatchcmd", "meta": "xpatch-cmd", "score": 0.0019344877752147675}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "xpatch-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "xpatch-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "xpatch-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "xpatch-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "xpatch-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "xpatch-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "xpatch-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "xpatch-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "xpatch-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "xpatch-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "xpatch-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "xpatch-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "xpatch-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "xpatch-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "xpatch-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "xpatch-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xpatch-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "xpatch-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "xpatch-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "xpatch-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "xpatch-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xpatch-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xpatch-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xpatch-cmd", "score": 0.2864294797053033}], "totpages": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "totpages-cmd", "score": 0.00037306820619479756}], "fourier": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fourier-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fourier-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fourier-cmd", "score": 0.021170869458413965}], "scrbase": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "scrbase-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "scrbase-cmd", "score": 0.1789117552185788}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scrbase-cmd", "score": 0.00037306820619479756}], "svg": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "svg-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "svg-cmd", "score": 0.1789117552185788}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "svg-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "svg-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "svg-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "svg-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "svg-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "svg-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "svg-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "svg-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "svg-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "svg-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "svg-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "svg-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "svg-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "svg-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "svg-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "svg-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "svg-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "svg-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "svg-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "svg-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "svg-cmd", "score": 0.004649150613625593}, {"caption": "\\csname", "snippet": "\\csname", "meta": "svg-cmd", "score": 0.008565354665444157}], "etex": [{"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "etex-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "etex-cmd", "score": 0.00031058155311734754}], "linguex": [{"caption": "\\Last[]", "snippet": "\\Last[$1]", "meta": "linguex-cmd", "score": 0.0008163755131430334}, {"caption": "\\Last", "snippet": "\\Last", "meta": "linguex-cmd", "score": 0.0008163755131430334}, {"caption": "\\Next", "snippet": "\\Next", "meta": "linguex-cmd", "score": 0.0018776636802289772}, {"caption": "\\Next[]", "snippet": "\\Next[$1]", "meta": "linguex-cmd", "score": 0.0018776636802289772}, {"caption": "\\LLast[]", "snippet": "\\LLast[$1]", "meta": "linguex-cmd", "score": 0.00016327510262860667}, {"caption": "\\LLast", "snippet": "\\LLast", "meta": "linguex-cmd", "score": 0.00016327510262860667}, {"caption": "\\NNext[]", "snippet": "\\NNext[$1]", "meta": "linguex-cmd", "score": 0.0004490065322286684}, {"caption": "\\NNext", "snippet": "\\NNext", "meta": "linguex-cmd", "score": 0.0004490065322286684}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "linguex-cmd", "score": 1.897791904799601}, {"caption": "\\xspace", "snippet": "\\xspace", "meta": "linguex-cmd", "score": 0.07560370351316588}], "adforn": [{"caption": "\\adforn{}", "snippet": "\\adforn{$1}", "meta": "adforn-cmd", "score": 0.0003148505561835075}, {"caption": "\\ding{}", "snippet": "\\ding{$1}", "meta": "adforn-cmd", "score": 0.009992300665793867}], "bigstrut": [{"caption": "\\bigstrut", "snippet": "\\bigstrut", "meta": "bigstrut-cmd", "score": 0.005498219710082848}], "standalone": [{"caption": "\\renewcommand{}{}", "snippet": "\\renewcommand{$1}{$2}", "meta": "standalone-cmd", "score": 0.3267437011085663}, {"caption": "\\renewcommand", "snippet": "\\renewcommand", "meta": "standalone-cmd", "score": 0.3267437011085663}, {"caption": "\\currfiledir", "snippet": "\\currfiledir", "meta": "standalone-cmd", "score": 0.0002459788020229296}, {"caption": "\\empty", "snippet": "\\empty", "meta": "standalone-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "standalone-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "standalone-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "standalone-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "standalone-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "standalone-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "standalone-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "standalone-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "standalone-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "standalone-cmd", "score": 0.021170869458413965}], "ifsym": [{"caption": "\\Letter", "snippet": "\\Letter", "meta": "ifsym-cmd", "score": 0.0012281130571092198}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "ifsym-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "ifsym-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "ifsym-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ifsym-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ifsym-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "ifsym-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "ifsym-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "ifsym-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "ifsym-cmd", "score": 0.028955796305270766}], "newtxtext": [{"caption": "\\textsc{}", "snippet": "\\textsc{$1}", "meta": "newtxtext-cmd", "score": 0.6926466355384758}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "newtxtext-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "newtxtext-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "newtxtext-cmd", "score": 0.021170869458413965}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "newtxtext-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "newtxtext-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "newtxtext-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "newtxtext-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "newtxtext-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "newtxtext-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "newtxtext-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "newtxtext-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "newtxtext-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "newtxtext-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "newtxtext-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "newtxtext-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "newtxtext-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "newtxtext-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "newtxtext-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "newtxtext-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "newtxtext-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "newtxtext-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "newtxtext-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "newtxtext-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "newtxtext-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "newtxtext-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "newtxtext-cmd", "score": 0.008565354665444157}], "silence": [{"caption": "\\WarningsOff[]", "snippet": "\\WarningsOff[$1]", "meta": "silence-cmd", "score": 0.00014933999190577243}, {"caption": "\\WarningFilter{}{}", "snippet": "\\WarningFilter{$1}{$2}", "meta": "silence-cmd", "score": 0.0010293824370507024}], "numprint": [{"caption": "\\textcelsius", "snippet": "\\textcelsius", "meta": "numprint-cmd", "score": 0.00012244782670334462}, {"caption": "\\pm", "snippet": "\\pm", "meta": "numprint-cmd", "score": 0.15663535405975132}, {"caption": "\\npdecimalsign{}", "snippet": "\\npdecimalsign{$1}", "meta": "numprint-cmd", "score": 8.401009062000455e-06}, {"caption": "\\npthousandsep{}", "snippet": "\\npthousandsep{$1}", "meta": "numprint-cmd", "score": 8.401009062000455e-06}, {"caption": "\\np{}", "snippet": "\\np{$1}", "meta": "numprint-cmd", "score": 0.0001782233963311367}, {"caption": "\\np", "snippet": "\\np", "meta": "numprint-cmd", "score": 0.0001782233963311367}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "numprint-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "numprint-cmd", "score": 0.2864294797053033}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "numprint-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "numprint-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "numprint-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "numprint-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "numprint-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "numprint-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "numprint-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "numprint-cmd", "score": 0.018615449342361392}], "srcltx": [{"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "srcltx-cmd", "score": 0.2659628337907604}, {"caption": "\\input{}", "snippet": "\\input{$1}", "meta": "srcltx-cmd", "score": 0.4966021927742672}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "srcltx-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "srcltx-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "srcltx-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "srcltx-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "srcltx-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "srcltx-cmd", "score": 0.0018957469739775527}], "ctable": [{"caption": "\\tmark[]", "snippet": "\\tmark[$1]", "meta": "ctable-cmd", "score": 0.004423748442334348}, {"caption": "\\ctable[]{}{}{}", "snippet": "\\ctable[$1]{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.0007377841391165772}, {"caption": "\\let", "snippet": "\\let", "meta": "ctable-cmd", "score": 0.03789745970461662}, {"caption": "\\write", "snippet": "\\write", "meta": "ctable-cmd", "score": 0.0008038857295393196}, {"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "ctable-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "ctable-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "ctable-cmd", "score": 0.0005861357565780464}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ctable-cmd", "score": 0.014532521139459619}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "ctable-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ctable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ctable-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "ctable-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "ctable-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "ctable-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "ctable-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "ctable-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "ctable-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ctable-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "ctable-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "ctable-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "ctable-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "ctable-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "ctable-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "ctable-cmd", "score": 0.0018957469739775527}, {"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "ctable-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "ctable-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "ctable-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "ctable-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "ctable-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "ctable-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "ctable-cmd", "score": 0.059857788139528495}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "ctable-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ctable-cmd", "score": 0.008565354665444157}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "ctable-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "ctable-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ctable-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "ctable-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ctable-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "ctable-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "ctable-cmd", "score": 0.018615449342361392}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "ctable-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "ctable-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "ctable-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "ctable-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "ctable-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "ctable-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "ctable-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "ctable-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "ctable-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "ctable-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "ctable-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "ctable-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "ctable-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "ctable-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ctable-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "ctable-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ctable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ctable-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "ctable-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "ctable-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "ctable-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "ctable-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "ctable-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "ctable-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ctable-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "ctable-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "ctable-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "ctable-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "ctable-cmd", "score": 0.2864294797053033}], "bbding": [{"caption": "\\HandRight", "snippet": "\\HandRight", "meta": "bbding-cmd", "score": 9.986169155719329e-05}, {"caption": "\\XSolidBrush", "snippet": "\\XSolidBrush", "meta": "bbding-cmd", "score": 0.0003502234425563509}, {"caption": "\\Checkmark", "snippet": "\\Checkmark", "meta": "bbding-cmd", "score": 0.0010506703276690528}], "endfloat": [{"caption": "\\DeclareDelayedFloatFlavor{}{}", "snippet": "\\DeclareDelayedFloatFlavor{$1}{$2}", "meta": "endfloat-cmd", "score": 0.00012872796177294446}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "endfloat-cmd", "score": 0.00037306820619479756}], "centernot": [{"caption": "\\centernot", "snippet": "\\centernot", "meta": "centernot-cmd", "score": 0.0002513707969474898}], "tikzpagenodes": [{"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpagenodes-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpagenodes-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzpagenodes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzpagenodes-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikzpagenodes-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikzpagenodes-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikzpagenodes-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpagenodes-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikzpagenodes-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpagenodes-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikzpagenodes-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikzpagenodes-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzpagenodes-cmd", "score": 0.004719094298848707}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpagenodes-cmd", "score": 0.00530510025314411}, {"caption": "\\checkoddpage", "snippet": "\\checkoddpage", "meta": "tikzpagenodes-cmd", "score": 0.00028672585452906425}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikzpagenodes-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzpagenodes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzpagenodes-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikzpagenodes-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzpagenodes-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikzpagenodes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzpagenodes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikzpagenodes-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikzpagenodes-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikzpagenodes-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikzpagenodes-cmd", "score": 0.2864294797053033}], "xargs": [{"caption": "\\newcommandx{}[][]{}", "snippet": "\\newcommandx{$1}[$2][$3]{$4}", "meta": "xargs-cmd", "score": 0.0001110821063389004}], "morefloats": [{"caption": "\\empty", "snippet": "\\empty", "meta": "morefloats-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "morefloats-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "morefloats-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "morefloats-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "morefloats-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "morefloats-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "morefloats-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "morefloats-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "morefloats-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "morefloats-cmd", "score": 0.021170869458413965}], "background": [{"caption": "\\BgThispage", "snippet": "\\BgThispage", "meta": "background-cmd", "score": 0.0003956357273698423}, {"caption": "\\backgroundsetup{}", "snippet": "\\backgroundsetup{$1}", "meta": "background-cmd", "score": 0.0004910777123492879}], "bibunits": [{"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "bibunits-cmd", "score": 0.2659628337907604}], "moresize": [{"caption": "\\Huge", "snippet": "\\Huge", "meta": "moresize-cmd", "score": 0.04725806985998919}], "pgfpages": [{"caption": "\\pgfpagesphysicalpageoptions{}", "snippet": "\\pgfpagesphysicalpageoptions{$1}", "meta": "pgfpages-cmd", "score": 0.00045967325420052095}, {"caption": "\\pgfpageslogicalpageoptions{}{}", "snippet": "\\pgfpageslogicalpageoptions{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.00045967325420052095}, {"caption": "\\pgfpageoptionborder{}", "snippet": "\\pgfpageoptionborder{$1}", "meta": "pgfpages-cmd", "score": 0.0009193465084010419}, {"caption": "\\pgfpageoptionborder", "snippet": "\\pgfpageoptionborder", "meta": "pgfpages-cmd", "score": 0.0009193465084010419}, {"caption": "\\pgfpagesdeclarelayout{}{}{}", "snippet": "\\pgfpagesdeclarelayout{$1}{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.00045967325420052095}, {"caption": "\\pgfpagesuselayout{}", "snippet": "\\pgfpagesuselayout{$1}", "meta": "pgfpages-cmd", "score": 0.0006090132461062934}, {"caption": "\\pgfpagesuselayout{}[]", "snippet": "\\pgfpagesuselayout{$1}[$2]", "meta": "pgfpages-cmd", "score": 0.0006090132461062934}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "pgfpages-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "pgfpages-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "pgfpages-cmd", "score": 0.028955796305270766}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfpages-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfpages-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfpages-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfpages-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfpages-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfpages-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfpages-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfpages-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfpages-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfpages-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfpages-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfpages-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfpages-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfpages-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfpages-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfpages-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfpages-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfpages-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfpages-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfpages-cmd", "score": 0.2864294797053033}], "ctex": [{"caption": "\\CTeX", "snippet": "\\CTeX", "meta": "ctex-cmd", "score": 0.0005884706823906032}, {"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "ctex-cmd", "score": 0.04598628699063736}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "ctex-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "ctex-cmd", "score": 0.2864294797053033}], "algcompatible": [{"caption": "\\algrenewcommand", "snippet": "\\algrenewcommand", "meta": "algcompatible-cmd", "score": 0.0019861803661869416}, {"caption": "\\Statex", "snippet": "\\Statex", "meta": "algcompatible-cmd", "score": 0.008622777195102994}, {"caption": "\\BState{}", "snippet": "\\BState{$1}", "meta": "algcompatible-cmd", "score": 0.0008685861525307122}, {"caption": "\\BState", "snippet": "\\BState", "meta": "algcompatible-cmd", "score": 0.0008685861525307122}, {"caption": "\\algloopdefx{}[][]{}", "snippet": "\\algloopdefx{$1}[$2][$3]{$4}", "meta": "algcompatible-cmd", "score": 0.00025315185701145097}, {"caption": "\\algnewcommand", "snippet": "\\algnewcommand", "meta": "algcompatible-cmd", "score": 0.0030209395012065327}, {"caption": "\\algnewcommand{}[]{}", "snippet": "\\algnewcommand{$1}[$2]{$3}", "meta": "algcompatible-cmd", "score": 0.0030209395012065327}, {"caption": "\\Comment{}", "snippet": "\\Comment{$1}", "meta": "algcompatible-cmd", "score": 0.005178604573219454}, {"caption": "\\algblockdefx{}{}[]", "snippet": "\\algblockdefx{$1}{$2}[$3]", "meta": "algcompatible-cmd", "score": 0.00025315185701145097}, {"caption": "\\algrenewtext{}{}", "snippet": "\\algrenewtext{$1}{$2}", "meta": "algcompatible-cmd", "score": 0.0024415580558825975}, {"caption": "\\algrenewtext{}[]{}", "snippet": "\\algrenewtext{$1}[$2]{$3}", "meta": "algcompatible-cmd", "score": 0.0024415580558825975}, {"caption": "\\algblock{}{}", "snippet": "\\algblock{$1}{$2}", "meta": "algcompatible-cmd", "score": 0.0007916858220314837}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algcompatible-cmd", "score": 0.008565354665444157}, {"caption": "\\algdef{}[]{}{}{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "algcompatible-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}{}[]{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}[$5]{$6}{$7}", "meta": "algcompatible-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}[]{}", "snippet": "\\algdef{$1}[$2]{$3}[$4]{$5}", "meta": "algcompatible-cmd", "score": 0.0003102486920966127}, {"caption": "\\algtext{}", "snippet": "\\algtext{$1}", "meta": "algcompatible-cmd", "score": 0.0005463612015579842}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algcompatible-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algcompatible-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algcompatible-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algcompatible-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algcompatible-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algcompatible-cmd", "score": 0.0018957469739775527}], "draftwatermark": [{"caption": "\\SetWatermarkScale{}", "snippet": "\\SetWatermarkScale{$1}", "meta": "draftwatermark-cmd", "score": 0.0013776850432469145}, {"caption": "\\SetWatermarkText{}", "snippet": "\\SetWatermarkText{$1}", "meta": "draftwatermark-cmd", "score": 0.0017209596079747669}, {"caption": "\\SetWatermarkColor[]{}", "snippet": "\\SetWatermarkColor[$1]{$2}", "meta": "draftwatermark-cmd", "score": 0.0007061648188687239}, {"caption": "\\SetWatermarkFontSize{}", "snippet": "\\SetWatermarkFontSize{$1}", "meta": "draftwatermark-cmd", "score": 0.0005747853176838451}, {"caption": "\\SetWatermarkLightness{}", "snippet": "\\SetWatermarkLightness{$1}", "meta": "draftwatermark-cmd", "score": 0.0005747853176838451}, {"caption": "\\SetWatermarkAngle{}", "snippet": "\\SetWatermarkAngle{$1}", "meta": "draftwatermark-cmd", "score": 0.0005747853176838451}, {"caption": "\\csname", "snippet": "\\csname", "meta": "draftwatermark-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.00037306820619479756}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "draftwatermark-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "draftwatermark-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "draftwatermark-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "draftwatermark-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "draftwatermark-cmd", "score": 0.2864294797053033}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "draftwatermark-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "draftwatermark-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "draftwatermark-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "draftwatermark-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "draftwatermark-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "draftwatermark-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "draftwatermark-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "draftwatermark-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "draftwatermark-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "draftwatermark-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "draftwatermark-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "draftwatermark-cmd", "score": 0.004719094298848707}], "eqparbox": [{"caption": "\\eqparbox{}{}", "snippet": "\\eqparbox{$1}{$2}", "meta": "eqparbox-cmd", "score": 2.9423534119530166e-05}, {"caption": "\\item", "snippet": "\\item", "meta": "eqparbox-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "eqparbox-cmd", "score": 3.800886892251021}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "eqparbox-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "eqparbox-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "eqparbox-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "eqparbox-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "eqparbox-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "eqparbox-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "eqparbox-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "eqparbox-cmd", "score": 0.018615449342361392}, {"caption": "\\csname", "snippet": "\\csname", "meta": "eqparbox-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "eqparbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "eqparbox-cmd", "score": 0.021170869458413965}], "nowidow": [{"caption": "\\empty", "snippet": "\\empty", "meta": "nowidow-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "nowidow-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nowidow-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "nowidow-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "nowidow-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nowidow-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nowidow-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "nowidow-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "nowidow-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "nowidow-cmd", "score": 0.021170869458413965}], "stackrel": [{"caption": "\\stackrel{}{}", "snippet": "\\stackrel{$1}{$2}", "meta": "stackrel-cmd", "score": 0.009911875742973681}, {"caption": "\\csname", "snippet": "\\csname", "meta": "stackrel-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "stackrel-cmd", "score": 0.002958865219480927}], "threeparttablex": [{"caption": "\\item", "snippet": "\\item", "meta": "threeparttablex-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "threeparttablex-cmd", "score": 3.800886892251021}, {"caption": "\\insertTableNotes", "snippet": "\\insertTableNotes", "meta": "threeparttablex-cmd", "score": 4.002553629215439e-05}, {"caption": "\\tnotex{}", "snippet": "\\tnotex{$1}", "meta": "threeparttablex-cmd", "score": 0.0021491972748178554}, {"caption": "\\csname", "snippet": "\\csname", "meta": "threeparttablex-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "threeparttablex-cmd", "score": 0.008565354665444157}, {"caption": "\\item", "snippet": "\\item", "meta": "threeparttablex-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "threeparttablex-cmd", "score": 3.800886892251021}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "threeparttablex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "threeparttablex-cmd", "score": 0.021170869458413965}], "mathdesign": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mathdesign-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mathdesign-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mathdesign-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "mathdesign-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "mathdesign-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "mathdesign-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "mathdesign-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "mathdesign-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "mathdesign-cmd", "score": 0.0018957469739775527}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "mathdesign-cmd", "score": 0.00037306820619479756}], "pst-node": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-node-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-node-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-node-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-node-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-node-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-node-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-node-cmd", "score": 0.006520475264573554}], "varwidth": [{"caption": "\\par", "snippet": "\\par", "meta": "varwidth-cmd", "score": 0.413853376001159}], "schemabloc": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "schemabloc-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "schemabloc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "schemabloc-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "schemabloc-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "schemabloc-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "schemabloc-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "schemabloc-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "schemabloc-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "schemabloc-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "schemabloc-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "schemabloc-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "schemabloc-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "schemabloc-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "schemabloc-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "schemabloc-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "schemabloc-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "schemabloc-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "schemabloc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "schemabloc-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "schemabloc-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "schemabloc-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "schemabloc-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "schemabloc-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "schemabloc-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "schemabloc-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "schemabloc-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "schemabloc-cmd", "score": 0.2864294797053033}], "bigints": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "bigints-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "bigints-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "bigints-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "bigints-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "bigints-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "bigints-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "bigints-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "bigints-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "bigints-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "bigints-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "bigints-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "bigints-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "bigints-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "bigints-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "bigints-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "bigints-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "bigints-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "bigints-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "bigints-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "bigints-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "bigints-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "bigints-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "bigints-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "bigints-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "bigints-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "bigints-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "bigints-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "bigints-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "bigints-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "bigints-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "bigints-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "bigints-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "bigints-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "bigints-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "bigints-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "bigints-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "bigints-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "bigints-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "bigints-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "bigints-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "bigints-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "bigints-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "bigints-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "bigints-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "bigints-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "bigints-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "bigints-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "bigints-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "bigints-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "bigints-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "bigints-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "bigints-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "bigints-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "bigints-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "bigints-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "bigints-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "bigints-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "bigints-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "bigints-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "bigints-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "bigints-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "bigints-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "bigints-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "bigints-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "bigints-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "bigints-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "bigints-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "bigints-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "bigints-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "bigints-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "bigints-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "bigints-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "bigints-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "bigints-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "bigints-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "bigints-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "bigints-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "bigints-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "bigints-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "bigints-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "bigints-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "bigints-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "bigints-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "bigints-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "bigints-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "bigints-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "bigints-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "bigints-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "bigints-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "bigints-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "bigints-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "bigints-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "bigints-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "bigints-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "bigints-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "bigints-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "bigints-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "bigints-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "bigints-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "bigints-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "bigints-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "bigints-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "bigints-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "bigints-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "bigints-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "bigints-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "bigints-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "bigints-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "bigints-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "bigints-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "bigints-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "bigints-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "bigints-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "bigints-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "bigints-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "bigints-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "bigints-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "bigints-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "bigints-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "bigints-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "bigints-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "bigints-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "bigints-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "bigints-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "bigints-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "bigints-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "bigints-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "bigints-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "bigints-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "bigints-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "bigints-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "bigints-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "bigints-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "bigints-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "bigints-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "bigints-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "bigints-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "bigints-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "bigints-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "bigints-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "bigints-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "bigints-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "bigints-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "bigints-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "bigints-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "bigints-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "bigints-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "bigints-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "bigints-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bigints-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "bigints-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "bigints-cmd", "score": 0.0063276692758974925}], "classicthesis": [{"caption": "\\marginpar{}", "snippet": "\\marginpar{$1}", "meta": "classicthesis-cmd", "score": 0.003400158497921723}, {"caption": "\\marginpar", "snippet": "\\marginpar", "meta": "classicthesis-cmd", "score": 0.003400158497921723}, {"caption": "\\cftsecleader", "snippet": "\\cftsecleader", "meta": "classicthesis-cmd", "score": 0.0011340882025681251}, {"caption": "\\cftsubsecleader", "snippet": "\\cftsubsecleader", "meta": "classicthesis-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\spacedlowsmallcaps{}", "snippet": "\\spacedlowsmallcaps{$1}", "meta": "classicthesis-cmd", "score": 0.002677188251799468}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "classicthesis-cmd", "score": 0.005008938879210868}, {"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "classicthesis-cmd", "score": 0.005924520024686584}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "classicthesis-cmd", "score": 0.005924520024686584}, {"caption": "\\part{}", "snippet": "\\part{$1}", "meta": "classicthesis-cmd", "score": 0.022180129487444723}, {"caption": "\\tocEntry{}", "snippet": "\\tocEntry{$1}", "meta": "classicthesis-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\graffito{}", "snippet": "\\graffito{$1}", "meta": "classicthesis-cmd", "score": 1.1006799670632527e-05}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "classicthesis-cmd", "score": 0.422097569591803}, {"caption": "\\spacedallcaps{}", "snippet": "\\spacedallcaps{$1}", "meta": "classicthesis-cmd", "score": 0.0015281000475958944}, {"caption": "\\cftchapleader", "snippet": "\\cftchapleader", "meta": "classicthesis-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\myVersion", "snippet": "\\myVersion", "meta": "classicthesis-cmd", "score": 0.00018029288638573757}, {"caption": "\\ctparttext{}", "snippet": "\\ctparttext{$1}", "meta": "classicthesis-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "classicthesis-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "classicthesis-cmd", "score": 0.1789117552185788}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.00037306820619479756}, {"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "classicthesis-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "classicthesis-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "classicthesis-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "classicthesis-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "classicthesis-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "classicthesis-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "classicthesis-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "classicthesis-cmd", "score": 0.059857788139528495}, {"caption": "\\titleclass{}{}[]", "snippet": "\\titleclass{$1}{$2}[$3]", "meta": "classicthesis-cmd", "score": 0.00028979763314974667}, {"caption": "\\titlelabel{}", "snippet": "\\titlelabel{$1}", "meta": "classicthesis-cmd", "score": 6.40387839367932e-06}, {"caption": "\\thetitle", "snippet": "\\thetitle", "meta": "classicthesis-cmd", "score": 0.0015531478302713473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "classicthesis-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "classicthesis-cmd", "score": 0.021170869458413965}, {"caption": "\\titleformat{}{}{}{}{}[]", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}[$6]", "meta": "classicthesis-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}[]{}{}{}{}", "snippet": "\\titleformat{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "classicthesis-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}", "snippet": "\\titleformat{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}{}{}{}", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}", "meta": "classicthesis-cmd", "score": 0.03475519439740096}, {"caption": "\\titlespacing{}{}{}{}", "snippet": "\\titlespacing{$1}{$2}{$3}{$4}", "meta": "classicthesis-cmd", "score": 0.023062744385192156}, {"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.038323601301945065}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "classicthesis-cmd", "score": 0.038323601301945065}, {"caption": "\\markright{}", "snippet": "\\markright{$1}", "meta": "classicthesis-cmd", "score": 0.007138622674767024}, {"caption": "\\markright{}{}", "snippet": "\\markright{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.007138622674767024}, {"caption": "\\filleft", "snippet": "\\filleft", "meta": "classicthesis-cmd", "score": 7.959989906732799e-05}, {"caption": "\\filcenter", "snippet": "\\filcenter", "meta": "classicthesis-cmd", "score": 0.0004835660211260246}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "classicthesis-cmd", "score": 0.2253056071787701}, {"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "classicthesis-cmd", "score": 0.044016804142963585}, {"caption": "\\csname", "snippet": "\\csname", "meta": "classicthesis-cmd", "score": 0.008565354665444157}, {"caption": "\\chaptertitlename", "snippet": "\\chaptertitlename", "meta": "classicthesis-cmd", "score": 0.0016985007766926272}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "classicthesis-cmd", "score": 0.3277033727934986}, {"caption": "\\filright", "snippet": "\\filright", "meta": "classicthesis-cmd", "score": 7.959989906732799e-05}, {"caption": "\\titlerule", "snippet": "\\titlerule", "meta": "classicthesis-cmd", "score": 0.019273712561461216}, {"caption": "\\titlerule[]{}", "snippet": "\\titlerule[$1]{$2}", "meta": "classicthesis-cmd", "score": 0.019273712561461216}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "classicthesis-cmd", "score": 0.000396664302361659}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "classicthesis-cmd", "score": 2.341195220791228}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "classicthesis-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "classicthesis-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "classicthesis-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "classicthesis-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "classicthesis-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "classicthesis-cmd", "score": 0.0018957469739775527}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "classicthesis-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "classicthesis-cmd", "score": 0.021170869458413965}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "classicthesis-cmd", "score": 0.00530510025314411}, {"caption": "\\lsstyle", "snippet": "\\lsstyle", "meta": "classicthesis-cmd", "score": 0.0023367519914345774}, {"caption": "\\space", "snippet": "\\space", "meta": "classicthesis-cmd", "score": 0.023010789853665694}, {"caption": "\\DisableLigatures[]{}", "snippet": "\\DisableLigatures[$1]{$2}", "meta": "classicthesis-cmd", "score": 0.0009805246614299932}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "classicthesis-cmd", "score": 0.00021116765384691477}], "expl3": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "expl3-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "expl3-cmd", "score": 0.2864294797053033}], "pst-plot": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-plot-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-plot-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-plot-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-plot-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-plot-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-plot-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-plot-cmd", "score": 0.006520475264573554}], "chemarrow": [{"caption": "\\chemarrow", "snippet": "\\chemarrow", "meta": "chemarrow-cmd", "score": 0.0005176077206367611}], "prettyref": [{"caption": "\\newrefformat{}{}", "snippet": "\\newrefformat{$1}{$2}", "meta": "prettyref-cmd", "score": 0.001373625900102228}, {"caption": "\\prettyref{}", "snippet": "\\prettyref{$1}", "meta": "prettyref-cmd", "score": 0.005783541047730358}], "versions": [{"caption": "\\includeversion{}", "snippet": "\\includeversion{$1}", "meta": "versions-cmd", "score": 0.0028410409433993543}, {"caption": "\\excludeversion{}", "snippet": "\\excludeversion{$1}", "meta": "versions-cmd", "score": 0.001742562336270228}, {"caption": "\\processifversion{}{}", "snippet": "\\processifversion{$1}{$2}", "meta": "versions-cmd", "score": 0.0022991412707353805}], "contour": [{"caption": "\\contour{}{}", "snippet": "\\contour{$1}{$2}", "meta": "contour-cmd", "score": 0.0008245159401597211}, {"caption": "\\contourlength{}", "snippet": "\\contourlength{$1}", "meta": "contour-cmd", "score": 8.130187059343861e-05}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "contour-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "contour-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "contour-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "contour-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "contour-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "contour-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "contour-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "contour-cmd", "score": 0.2864294797053033}, {"caption": "\\csname", "snippet": "\\csname", "meta": "contour-cmd", "score": 0.008565354665444157}], "xintexpr": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xintexpr-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xintexpr-cmd", "score": 0.021170869458413965}], "tocstyle": [{"caption": "\\usetocstyle{}", "snippet": "\\usetocstyle{$1}", "meta": "tocstyle-cmd", "score": 3.2405622997778076e-06}], "bigdelim": [{"caption": "\\multirow{}{}{}", "snippet": "\\multirow{$1}{$2}{$3}", "meta": "bigdelim-cmd", "score": 0.07525389638751734}, {"caption": "\\multirow{}[]{}{}", "snippet": "\\multirow{$1}[$2]{$3}{$4}", "meta": "bigdelim-cmd", "score": 0.07525389638751734}], "eulervm": [{"caption": "\\big", "snippet": "\\big", "meta": "eulervm-cmd", "score": 0.05613164277964739}], "xr": [{"caption": "\\externaldocument{}", "snippet": "\\externaldocument{$1}", "meta": "xr-cmd", "score": 0.0008648763879096798}], "yhmath": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "yhmath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "yhmath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "yhmath-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "yhmath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "yhmath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "yhmath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "yhmath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "yhmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "yhmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "yhmath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "yhmath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "yhmath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "yhmath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "yhmath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "yhmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "yhmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "yhmath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "yhmath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "yhmath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "yhmath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "yhmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "yhmath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "yhmath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "yhmath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "yhmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "yhmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "yhmath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "yhmath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "yhmath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "yhmath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "yhmath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "yhmath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "yhmath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "yhmath-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "yhmath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "yhmath-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "yhmath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "yhmath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "yhmath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "yhmath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "yhmath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "yhmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "yhmath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "yhmath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "yhmath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "yhmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "yhmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "yhmath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "yhmath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "yhmath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "yhmath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "yhmath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "yhmath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "yhmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "yhmath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "yhmath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "yhmath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "yhmath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "yhmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "yhmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "yhmath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "yhmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "yhmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "yhmath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "yhmath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "yhmath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "yhmath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "yhmath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "yhmath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "yhmath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "yhmath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "yhmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "yhmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "yhmath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "yhmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "yhmath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "yhmath-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "yhmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "yhmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "yhmath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "yhmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "yhmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "yhmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "yhmath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "yhmath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "yhmath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "yhmath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "yhmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "yhmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "yhmath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "yhmath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "yhmath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "yhmath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "yhmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "yhmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "yhmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "yhmath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "yhmath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "yhmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "yhmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "yhmath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "yhmath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "yhmath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "yhmath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "yhmath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "yhmath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "yhmath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "yhmath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "yhmath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "yhmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "yhmath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "yhmath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "yhmath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "yhmath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "yhmath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "yhmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "yhmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "yhmath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "yhmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "yhmath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "yhmath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "yhmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "yhmath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "yhmath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "yhmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "yhmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "yhmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "yhmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "yhmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "yhmath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "yhmath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "yhmath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "yhmath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "yhmath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "yhmath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "yhmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "yhmath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "yhmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "yhmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "yhmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "yhmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "yhmath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "yhmath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "yhmath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "yhmath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "yhmath-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "yhmath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "yhmath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "yhmath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "yhmath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "yhmath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "yhmath-cmd", "score": 0.0063276692758974925}], "XCharter": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "XCharter-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "XCharter-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "XCharter-cmd", "score": 0.021170869458413965}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "XCharter-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "XCharter-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "XCharter-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "XCharter-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "XCharter-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "XCharter-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "XCharter-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "XCharter-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "XCharter-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "XCharter-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "XCharter-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "XCharter-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "XCharter-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "XCharter-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "XCharter-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "XCharter-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "XCharter-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "XCharter-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "XCharter-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "XCharter-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "XCharter-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "XCharter-cmd", "score": 0.008565354665444157}], "tikz-feynman": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-feynman-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-feynman-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-feynman-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-feynman-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-feynman-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-feynman-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-feynman-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-feynman-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-feynman-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-feynman-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-feynman-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-feynman-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-feynman-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-feynman-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-feynman-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-feynman-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-feynman-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-feynman-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-feynman-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-feynman-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-feynman-cmd", "score": 0.2864294797053033}], "easylist": [{"caption": "\\ListProperties", "snippet": "\\ListProperties", "meta": "easylist-cmd", "score": 5.7747123038330224e-05}], "hologo": [{"caption": "\\hologo{}", "snippet": "\\hologo{$1}", "meta": "hologo-cmd", "score": 0.00028086100750460613}], "cases": [{"caption": "\\theequation", "snippet": "\\theequation", "meta": "cases-cmd", "score": 0.002995924112493351}], "xint": [{"caption": "\\xintSgnFork{}", "snippet": "\\xintSgnFork{$1}", "meta": "xint-cmd", "score": 0.0005720629946669665}, {"caption": "\\xintCmp{}{}", "snippet": "\\xintCmp{$1}{$2}", "meta": "xint-cmd", "score": 0.0002860314973334833}, {"caption": "\\xintOdd{}", "snippet": "\\xintOdd{$1}", "meta": "xint-cmd", "score": 0.0002860314973334833}, {"caption": "\\xintGeq", "snippet": "\\xintGeq", "meta": "xint-cmd", "score": 0.0002860314973334833}], "inputenx": [{"caption": "\\inputencoding{}", "snippet": "\\inputencoding{$1}", "meta": "inputenx-cmd", "score": 0.0002447047447770061}], "vwcol": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "vwcol-cmd", "score": 0.04598628699063736}, {"caption": "\\csname", "snippet": "\\csname", "meta": "vwcol-cmd", "score": 0.008565354665444157}, {"caption": "\\justifying", "snippet": "\\justifying", "meta": "vwcol-cmd", "score": 0.010373702256548788}, {"caption": "\\justifying{}", "snippet": "\\justifying{$1}", "meta": "vwcol-cmd", "score": 0.010373702256548788}, {"caption": "\\RaggedRight", "snippet": "\\RaggedRight", "meta": "vwcol-cmd", "score": 0.001021021782267457}, {"caption": "\\Centering", "snippet": "\\Centering", "meta": "vwcol-cmd", "score": 0.00037395241488843035}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "vwcol-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "vwcol-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "vwcol-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "vwcol-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "vwcol-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "vwcol-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "vwcol-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "vwcol-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "vwcol-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "vwcol-cmd", "score": 0.028955796305270766}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "vwcol-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "vwcol-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "vwcol-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "vwcol-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "vwcol-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "vwcol-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "vwcol-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "vwcol-cmd", "score": 0.2864294797053033}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "vwcol-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "vwcol-cmd", "score": 0.021170869458413965}], "multimedia": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "multimedia-cmd", "score": 0.00037306820619479756}], "sgame": [{"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "sgame-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "sgame-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "sgame-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "sgame-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "sgame-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "sgame-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "sgame-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "sgame-cmd", "score": 0.2864294797053033}], "bussproofs": [{"caption": "\\makeatletter", "snippet": "\\makeatletter", "meta": "bussproofs-cmd", "score": 0.041979363643201636}, {"caption": "\\makeatother", "snippet": "\\makeatother", "meta": "bussproofs-cmd", "score": 0.03923442255397878}], "titlepic": [{"caption": "\\titlepic{}", "snippet": "\\titlepic{$1}", "meta": "titlepic-cmd", "score": 0.00020896323441399082}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "titlepic-cmd", "score": 0.7504160124360846}], "paracol": [{"caption": "\\switchcolumn", "snippet": "\\switchcolumn", "meta": "paracol-cmd", "score": 0.0008273060639466222}, {"caption": "\\csname", "snippet": "\\csname", "meta": "paracol-cmd", "score": 0.008565354665444157}], "polyglossia": [{"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "polyglossia-cmd", "score": 0.038323601301945065}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "polyglossia-cmd", "score": 0.038323601301945065}, {"caption": "\\normalfont", "snippet": "\\normalfont", "meta": "polyglossia-cmd", "score": 0.06871177093091137}, {"caption": "\\normalfont{}", "snippet": "\\normalfont{$1}", "meta": "polyglossia-cmd", "score": 0.06871177093091137}, {"caption": "\\setdefaultlanguage{}", "snippet": "\\setdefaultlanguage{$1}", "meta": "polyglossia-cmd", "score": 0.00021116765384691477}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "polyglossia-cmd", "score": 0.00021116765384691477}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "polyglossia-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "polyglossia-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "polyglossia-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "polyglossia-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "polyglossia-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "polyglossia-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "polyglossia-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "polyglossia-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "polyglossia-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "polyglossia-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "polyglossia-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "polyglossia-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "polyglossia-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "polyglossia-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "polyglossia-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "polyglossia-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "polyglossia-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "polyglossia-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "polyglossia-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "polyglossia-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "polyglossia-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "polyglossia-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "polyglossia-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "polyglossia-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "polyglossia-cmd", "score": 0.2864294797053033}], "zref-user": [{"caption": "\\zlabel{}", "snippet": "\\zlabel{$1}", "meta": "zref-user-cmd", "score": 0.0005277905480209891}, {"caption": "\\zref", "snippet": "\\zref", "meta": "zref-user-cmd", "score": 0.002193637536912482}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "zref-user-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "zref-user-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-user-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "zref-user-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "zref-user-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-user-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-user-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-user-cmd", "score": 0.002958865219480927}], "zref-abspage": [{"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "zref-abspage-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "zref-abspage-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "zref-abspage-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "zref-abspage-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "zref-abspage-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "zref-abspage-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-abspage-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "zref-abspage-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "zref-abspage-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-abspage-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-abspage-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-abspage-cmd", "score": 0.002958865219480927}], "quotchap": [{"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "quotchap-cmd", "score": 0.422097569591803}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "quotchap-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "quotchap-cmd", "score": 0.2864294797053033}, {"caption": "\\qauthor{}", "snippet": "\\qauthor{$1}", "meta": "quotchap-cmd", "score": 0.002335082759143631}], "misccorr": [{"caption": "\\subsection{}", "snippet": "\\subsection{$1}", "meta": "misccorr-cmd", "score": 1.3890912739512353}, {"caption": "\\section{}", "snippet": "\\section{$1}", "meta": "misccorr-cmd", "score": 3.0952612541683835}, {"caption": "\\csname", "snippet": "\\csname", "meta": "misccorr-cmd", "score": 0.008565354665444157}, {"caption": "\\makelabel", "snippet": "\\makelabel", "meta": "misccorr-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel{}", "snippet": "\\makelabel{$1}", "meta": "misccorr-cmd", "score": 5.739925426740175e-05}, {"caption": "\\makelabel[]{}", "snippet": "\\makelabel[$1]{$2}", "meta": "misccorr-cmd", "score": 5.739925426740175e-05}, {"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "misccorr-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "misccorr-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "misccorr-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "misccorr-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "misccorr-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "misccorr-cmd", "score": 0.0006671850995492977}], "academicons": [{"caption": "\\aiResearchGateSquare", "snippet": "\\aiResearchGateSquare", "meta": "academicons-cmd", "score": 0.0005747853176838451}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "academicons-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "academicons-cmd", "score": 0.2864294797053033}], "tasks": [{"caption": "\\csname", "snippet": "\\csname", "meta": "tasks-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tasks-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tasks-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tasks-cmd", "score": 0.2864294797053033}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tasks-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tasks-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tasks-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "tasks-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "tasks-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "tasks-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "tasks-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "tasks-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "tasks-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "tasks-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "tasks-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "tasks-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "tasks-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "tasks-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "tasks-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "tasks-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tasks-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "tasks-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "tasks-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "tasks-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tasks-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tasks-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tasks-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tasks-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tasks-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tasks-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tasks-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tasks-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tasks-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tasks-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tasks-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tasks-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tasks-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tasks-cmd", "score": 0.2864294797053033}], "pstricks-add": [{"caption": "\\green", "snippet": "\\green", "meta": "pstricks-add-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pstricks-add-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pstricks-add-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pstricks-add-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pstricks-add-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pstricks-add-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pstricks-add-cmd", "score": 0.006520475264573554}], "extramarks": [{"caption": "\\leftmark", "snippet": "\\leftmark", "meta": "extramarks-cmd", "score": 0.01094124445235767}, {"caption": "\\extramarks{}{}", "snippet": "\\extramarks{$1}{$2}", "meta": "extramarks-cmd", "score": 0.0003269562507660904}, {"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "extramarks-cmd", "score": 0.038323601301945065}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "extramarks-cmd", "score": 0.038323601301945065}, {"caption": "\\markright{}", "snippet": "\\markright{$1}", "meta": "extramarks-cmd", "score": 0.007138622674767024}, {"caption": "\\markright{}{}", "snippet": "\\markright{$1}{$2}", "meta": "extramarks-cmd", "score": 0.007138622674767024}, {"caption": "\\rightmark", "snippet": "\\rightmark", "meta": "extramarks-cmd", "score": 0.008472328846194114}], "calrsfs": [{"caption": "\\mathcal{}", "snippet": "\\mathcal{$1}", "meta": "calrsfs-cmd", "score": 0.35084018920966636}], "newlfont": [{"caption": "\\em", "snippet": "\\em", "meta": "newlfont-cmd", "score": 0.10357353994640862}], "mdwtab": [{"caption": "\\cline{}", "snippet": "\\cline{$1}", "meta": "mdwtab-cmd", "score": 0.07276573550543858}, {"caption": "\\hline", "snippet": "\\hline", "meta": "mdwtab-cmd", "score": 1.3209538327406387}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "mdwtab-cmd", "score": 0.5473606021405326}], "mdwmath": [{"caption": "\\bigg", "snippet": "\\bigg", "meta": "mdwmath-cmd", "score": 0.04318078602869565}], "wallpaper": [{"caption": "\\CenterWallPaper{}{}", "snippet": "\\CenterWallPaper{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.00042983945496357105}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "wallpaper-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "wallpaper-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "wallpaper-cmd", "score": 0.028955796305270766}, {"caption": "\\empty", "snippet": "\\empty", "meta": "wallpaper-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "wallpaper-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "wallpaper-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "wallpaper-cmd", "score": 0.008565354665444157}, {"caption": "\\AddToShipoutPictureFG{}", "snippet": "\\AddToShipoutPictureFG{$1}", "meta": "wallpaper-cmd", "score": 0.000325977535138643}, {"caption": "\\AddToShipoutPictureBG{}", "snippet": "\\AddToShipoutPictureBG{$1}", "meta": "wallpaper-cmd", "score": 0.0008957666085644653}, {"caption": "\\AtPageUpperLeft{}", "snippet": "\\AtPageUpperLeft{$1}", "meta": "wallpaper-cmd", "score": 0.0003608141410278152}, {"caption": "\\LenToUnit{}", "snippet": "\\LenToUnit{$1}", "meta": "wallpaper-cmd", "score": 0.0007216282820556304}, {"caption": "\\AddToShipoutPicture{}", "snippet": "\\AddToShipoutPicture{$1}", "meta": "wallpaper-cmd", "score": 0.0017658629469099734}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "wallpaper-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "wallpaper-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "wallpaper-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "wallpaper-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "wallpaper-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "wallpaper-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "wallpaper-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "wallpaper-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "wallpaper-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "wallpaper-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "wallpaper-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "wallpaper-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "wallpaper-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "wallpaper-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "wallpaper-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "wallpaper-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "wallpaper-cmd", "score": 0.008565354665444157}], "newunicodechar": [{"caption": "\\newunicodechar{}{}", "snippet": "\\newunicodechar{$1}{$2}", "meta": "newunicodechar-cmd", "score": 8.718084183564492e-05}], "thmtools": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thmtools-cmd", "score": 0.00037306820619479756}, {"caption": "\\listtheoremname", "snippet": "\\listtheoremname", "meta": "thmtools-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\thmtformatoptarg", "snippet": "\\thmtformatoptarg", "meta": "thmtools-cmd", "score": 6.353668036093916e-05}, {"caption": "\\listoftheorems[]", "snippet": "\\listoftheorems[$1]", "meta": "thmtools-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\declaretheoremstyle[]{}", "snippet": "\\declaretheoremstyle[$1]{$2}", "meta": "thmtools-cmd", "score": 0.0001168034231635369}, {"caption": "\\declaretheorem[]{}", "snippet": "\\declaretheorem[$1]{$2}", "meta": "thmtools-cmd", "score": 0.0004904790216915127}, {"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "thmtools-cmd", "score": 0.02533412165007986}, {"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thmtools-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thmtools-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thmtools-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thmtools-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thmtools-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thmtools-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thmtools-cmd", "score": 0.0006133100544751855}, {"caption": "\\empty", "snippet": "\\empty", "meta": "thmtools-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "thmtools-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "thmtools-cmd", "score": 0.008565354665444157}], "nccmath": [{"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "nccmath-cmd", "score": 1.4341091141105058}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "nccmath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "nccmath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "nccmath-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "nccmath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "nccmath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "nccmath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "nccmath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "nccmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "nccmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "nccmath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "nccmath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "nccmath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "nccmath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "nccmath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "nccmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "nccmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "nccmath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "nccmath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "nccmath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "nccmath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "nccmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "nccmath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "nccmath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "nccmath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "nccmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "nccmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "nccmath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "nccmath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "nccmath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "nccmath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "nccmath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "nccmath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "nccmath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "nccmath-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "nccmath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "nccmath-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "nccmath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "nccmath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "nccmath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "nccmath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "nccmath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "nccmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "nccmath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "nccmath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "nccmath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "nccmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "nccmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "nccmath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "nccmath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "nccmath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "nccmath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "nccmath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "nccmath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "nccmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "nccmath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "nccmath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "nccmath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "nccmath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "nccmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "nccmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "nccmath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "nccmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "nccmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "nccmath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "nccmath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "nccmath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "nccmath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "nccmath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "nccmath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "nccmath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "nccmath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "nccmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "nccmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "nccmath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "nccmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "nccmath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "nccmath-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "nccmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "nccmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "nccmath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "nccmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "nccmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "nccmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "nccmath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "nccmath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "nccmath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "nccmath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "nccmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "nccmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "nccmath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "nccmath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "nccmath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "nccmath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "nccmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "nccmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "nccmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "nccmath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "nccmath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "nccmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "nccmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "nccmath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "nccmath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "nccmath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "nccmath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "nccmath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "nccmath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "nccmath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "nccmath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "nccmath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "nccmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "nccmath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "nccmath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "nccmath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "nccmath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "nccmath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "nccmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "nccmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "nccmath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "nccmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "nccmath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "nccmath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "nccmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "nccmath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "nccmath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "nccmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "nccmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "nccmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "nccmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "nccmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "nccmath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "nccmath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "nccmath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "nccmath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "nccmath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "nccmath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "nccmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "nccmath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "nccmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "nccmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "nccmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "nccmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "nccmath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "nccmath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "nccmath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "nccmath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "nccmath-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "nccmath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "nccmath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "nccmath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nccmath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "nccmath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "nccmath-cmd", "score": 0.0063276692758974925}], "scrtime": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "scrtime-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "scrtime-cmd", "score": 0.1789117552185788}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "scrtime-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "scrtime-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "scrtime-cmd", "score": 0.000396664302361659}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scrtime-cmd", "score": 0.00037306820619479756}], "luainputenc": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "luainputenc-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "luainputenc-cmd", "score": 0.008565354665444157}], "curve2e": [{"caption": "\\polyline", "snippet": "\\polyline", "meta": "curve2e-cmd", "score": 0.00022468880600368487}, {"caption": "\\put", "snippet": "\\put", "meta": "curve2e-cmd", "score": 0.0406766030275089}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "curve2e-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "curve2e-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "curve2e-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "curve2e-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "curve2e-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "curve2e-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "curve2e-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "curve2e-cmd", "score": 0.2864294797053033}, {"caption": "\\Line", "snippet": "\\Line", "meta": "curve2e-cmd", "score": 0.0006078790177929149}, {"caption": "\\polygon", "snippet": "\\polygon", "meta": "curve2e-cmd", "score": 0.0008987552240147395}, {"caption": "\\line", "snippet": "\\line", "meta": "curve2e-cmd", "score": 0.014519741542622297}, {"caption": "\\polyline", "snippet": "\\polyline", "meta": "curve2e-cmd", "score": 0.00022468880600368487}, {"caption": "\\vector", "snippet": "\\vector", "meta": "curve2e-cmd", "score": 0.002970308722584179}], "couriers": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "couriers-cmd", "score": 0.00037306820619479756}], "caption3": [{"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "caption3-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "caption3-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "caption3-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "caption3-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "caption3-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "caption3-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "caption3-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "caption3-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "caption3-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "caption3-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "caption3-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "caption3-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "caption3-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "caption3-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "caption3-cmd", "score": 0.021473212893597875}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "caption3-cmd", "score": 0.00037306820619479756}], "gauss": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "gauss-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "gauss-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "gauss-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "gauss-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "gauss-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "gauss-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "gauss-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "gauss-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "gauss-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "gauss-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "gauss-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "gauss-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "gauss-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "gauss-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "gauss-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "gauss-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "gauss-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "gauss-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "gauss-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "gauss-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "gauss-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "gauss-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "gauss-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "gauss-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "gauss-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "gauss-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "gauss-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "gauss-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "gauss-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "gauss-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "gauss-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "gauss-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "gauss-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "gauss-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "gauss-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "gauss-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "gauss-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "gauss-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "gauss-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "gauss-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "gauss-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "gauss-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "gauss-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "gauss-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "gauss-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "gauss-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "gauss-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "gauss-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "gauss-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "gauss-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "gauss-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "gauss-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "gauss-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "gauss-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "gauss-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "gauss-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "gauss-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "gauss-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "gauss-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "gauss-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "gauss-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "gauss-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "gauss-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "gauss-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "gauss-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "gauss-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "gauss-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "gauss-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "gauss-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "gauss-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "gauss-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "gauss-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "gauss-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "gauss-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "gauss-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "gauss-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "gauss-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "gauss-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "gauss-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "gauss-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "gauss-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "gauss-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "gauss-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "gauss-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "gauss-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "gauss-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "gauss-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "gauss-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "gauss-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "gauss-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "gauss-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "gauss-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "gauss-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "gauss-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "gauss-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "gauss-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "gauss-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "gauss-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "gauss-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "gauss-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "gauss-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "gauss-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "gauss-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "gauss-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "gauss-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "gauss-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "gauss-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "gauss-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "gauss-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "gauss-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "gauss-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "gauss-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "gauss-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "gauss-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "gauss-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "gauss-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "gauss-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "gauss-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "gauss-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "gauss-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "gauss-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "gauss-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "gauss-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "gauss-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "gauss-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "gauss-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "gauss-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "gauss-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "gauss-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "gauss-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "gauss-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "gauss-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "gauss-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "gauss-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "gauss-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "gauss-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "gauss-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "gauss-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "gauss-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "gauss-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "gauss-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "gauss-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "gauss-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "gauss-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "gauss-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "gauss-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "gauss-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "gauss-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "gauss-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gauss-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "gauss-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "gauss-cmd", "score": 0.0063276692758974925}], "fancyref": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fancyref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fancyref-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "fancyref-cmd", "score": 0.008565354665444157}], "eufrak": [{"caption": "\\mathfrak{}", "snippet": "\\mathfrak{$1}", "meta": "eufrak-cmd", "score": 0.025213895825856578}, {"caption": "\\mathfrak", "snippet": "\\mathfrak", "meta": "eufrak-cmd", "score": 0.025213895825856578}], "fixme": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "fixme-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "fixme-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "fixme-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "fixme-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "fixme-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "fixme-cmd", "score": 0.0018957469739775527}, {"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "fixme-cmd", "score": 0.0022216421267780076}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "fixme-cmd", "score": 0.0072203369120285256}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fixme-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fixme-cmd", "score": 0.021170869458413965}, {"caption": "\\par", "snippet": "\\par", "meta": "fixme-cmd", "score": 0.413853376001159}, {"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "fixme-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "fixme-cmd", "score": 0.0024547099784948665}], "pgf-umlsd": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlsd-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-umlsd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-umlsd-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgf-umlsd-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgf-umlsd-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-umlsd-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlsd-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgf-umlsd-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgf-umlsd-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "pgf-umlsd-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "pgf-umlsd-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-umlsd-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-umlsd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-umlsd-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgf-umlsd-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-umlsd-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgf-umlsd-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlsd-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgf-umlsd-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgf-umlsd-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgf-umlsd-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgf-umlsd-cmd", "score": 0.2864294797053033}], "tgadventor": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgadventor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgadventor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgadventor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgadventor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgadventor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgadventor-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgadventor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgadventor-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgadventor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgadventor-cmd", "score": 0.021170869458413965}], "fancyheadings": [{"caption": "\\lhead{}", "snippet": "\\lhead{$1}", "meta": "fancyheadings-cmd", "score": 0.05268978171228714}, {"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "fancyheadings-cmd", "score": 0.005924520024686584}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "fancyheadings-cmd", "score": 0.005924520024686584}, {"caption": "\\fancypagestyle{}{}", "snippet": "\\fancypagestyle{$1}{$2}", "meta": "fancyheadings-cmd", "score": 0.009430919590937878}, {"caption": "\\footrule", "snippet": "\\footrule", "meta": "fancyheadings-cmd", "score": 0.0010032754348913366}, {"caption": "\\footrule{}", "snippet": "\\footrule{$1}", "meta": "fancyheadings-cmd", "score": 0.0010032754348913366}, {"caption": "\\fancyfoot[]{}", "snippet": "\\fancyfoot[$1]{$2}", "meta": "fancyheadings-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfoot{}", "snippet": "\\fancyfoot{$1}", "meta": "fancyheadings-cmd", "score": 0.024973618823189894}, {"caption": "\\fancyfootoffset[]{}", "snippet": "\\fancyfootoffset[$1]{$2}", "meta": "fancyheadings-cmd", "score": 0.0015373246231684555}, {"caption": "\\fancyfootoffset{}", "snippet": "\\fancyfootoffset{$1}", "meta": "fancyheadings-cmd", "score": 0.0015373246231684555}, {"caption": "\\footruleskip", "snippet": "\\footruleskip", "meta": "fancyheadings-cmd", "score": 0.000830117957327721}, {"caption": "\\fancyheadoffset[]{}", "snippet": "\\fancyheadoffset[$1]{$2}", "meta": "fancyheadings-cmd", "score": 0.0016786568695309166}, {"caption": "\\fancyheadoffset{}", "snippet": "\\fancyheadoffset{$1}", "meta": "fancyheadings-cmd", "score": 0.0016786568695309166}, {"caption": "\\iffloatpage{}{}", "snippet": "\\iffloatpage{$1}{$2}", "meta": "fancyheadings-cmd", "score": 6.606286310833368e-05}, {"caption": "\\cfoot{}", "snippet": "\\cfoot{$1}", "meta": "fancyheadings-cmd", "score": 0.013411641301057813}, {"caption": "\\subsectionmark", "snippet": "\\subsectionmark", "meta": "fancyheadings-cmd", "score": 3.1153423008593836e-05}, {"caption": "\\footrulewidth", "snippet": "\\footrulewidth", "meta": "fancyheadings-cmd", "score": 0.011424740897486949}, {"caption": "\\fancyhfoffset[]{}", "snippet": "\\fancyhfoffset[$1]{$2}", "meta": "fancyheadings-cmd", "score": 3.741978601121172e-05}, {"caption": "\\rhead{}", "snippet": "\\rhead{$1}", "meta": "fancyheadings-cmd", "score": 0.022782817416731292}, {"caption": "\\fancyplain{}{}", "snippet": "\\fancyplain{$1}{$2}", "meta": "fancyheadings-cmd", "score": 0.007402339896386138}, {"caption": "\\rfoot{}", "snippet": "\\rfoot{$1}", "meta": "fancyheadings-cmd", "score": 0.013393817825547868}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fancyheadings-cmd", "score": 0.00530510025314411}, {"caption": "\\plainheadrulewidth", "snippet": "\\plainheadrulewidth", "meta": "fancyheadings-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\baselinestretch", "snippet": "\\baselinestretch", "meta": "fancyheadings-cmd", "score": 0.03225350148161425}, {"caption": "\\lfoot{}", "snippet": "\\lfoot{$1}", "meta": "fancyheadings-cmd", "score": 0.00789399846642229}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "fancyheadings-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "fancyheadings-cmd", "score": 0.006776001543888959}, {"caption": "\\fancyhf{}", "snippet": "\\fancyhf{$1}", "meta": "fancyheadings-cmd", "score": 0.02314618933449356}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "fancyheadings-cmd", "score": 0.005008938879210868}, {"caption": "\\fancyhead[]{}", "snippet": "\\fancyhead[$1]{$2}", "meta": "fancyheadings-cmd", "score": 0.039101068064744296}, {"caption": "\\fancyhead{}", "snippet": "\\fancyhead{$1}", "meta": "fancyheadings-cmd", "score": 0.039101068064744296}, {"caption": "\\nouppercase{}", "snippet": "\\nouppercase{$1}", "meta": "fancyheadings-cmd", "score": 0.006416387071584083}, {"caption": "\\nouppercase", "snippet": "\\nouppercase", "meta": "fancyheadings-cmd", "score": 0.006416387071584083}, {"caption": "\\headrule", "snippet": "\\headrule", "meta": "fancyheadings-cmd", "score": 0.0008327432627715623}, {"caption": "\\headrule{}", "snippet": "\\headrule{$1}", "meta": "fancyheadings-cmd", "score": 0.0008327432627715623}, {"caption": "\\chead{}", "snippet": "\\chead{$1}", "meta": "fancyheadings-cmd", "score": 0.00755042164734884}, {"caption": "\\headrulewidth", "snippet": "\\headrulewidth", "meta": "fancyheadings-cmd", "score": 0.02268137935335823}], "tikz-3dplot": [{"caption": "\\tdplotsetmaincoords{}{}", "snippet": "\\tdplotsetmaincoords{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.00021728148272883815}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-3dplot-cmd", "score": 0.008565354665444157}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tikz-3dplot-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tikz-3dplot-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-3dplot-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-3dplot-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-3dplot-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-3dplot-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-3dplot-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-3dplot-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-3dplot-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-3dplot-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-3dplot-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-3dplot-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-3dplot-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-3dplot-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-3dplot-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-3dplot-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-3dplot-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-3dplot-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-3dplot-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-3dplot-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-3dplot-cmd", "score": 0.2864294797053033}], "ltxtable": [{"caption": "\\let", "snippet": "\\let", "meta": "ltxtable-cmd", "score": 0.03789745970461662}, {"caption": "\\write", "snippet": "\\write", "meta": "ltxtable-cmd", "score": 0.0008038857295393196}, {"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "ltxtable-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "ltxtable-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "ltxtable-cmd", "score": 0.0005861357565780464}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ltxtable-cmd", "score": 0.014532521139459619}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "ltxtable-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "ltxtable-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "ltxtable-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ltxtable-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "ltxtable-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ltxtable-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "ltxtable-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "ltxtable-cmd", "score": 0.018615449342361392}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "ltxtable-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "ltxtable-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ltxtable-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ltxtable-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "ltxtable-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "ltxtable-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "ltxtable-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "ltxtable-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "ltxtable-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "ltxtable-cmd", "score": 0.0313525090421608}], "pict2e": [{"caption": "\\Line", "snippet": "\\Line", "meta": "pict2e-cmd", "score": 0.0006078790177929149}, {"caption": "\\polygon", "snippet": "\\polygon", "meta": "pict2e-cmd", "score": 0.0008987552240147395}, {"caption": "\\line", "snippet": "\\line", "meta": "pict2e-cmd", "score": 0.014519741542622297}, {"caption": "\\polyline", "snippet": "\\polyline", "meta": "pict2e-cmd", "score": 0.00022468880600368487}, {"caption": "\\vector", "snippet": "\\vector", "meta": "pict2e-cmd", "score": 0.002970308722584179}], "ltablex": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "ltablex-cmd", "score": 1.2569477427490174}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "ltablex-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "ltablex-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "ltablex-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ltablex-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "ltablex-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ltablex-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "ltablex-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "ltablex-cmd", "score": 0.018615449342361392}, {"caption": "\\let", "snippet": "\\let", "meta": "ltablex-cmd", "score": 0.03789745970461662}, {"caption": "\\write", "snippet": "\\write", "meta": "ltablex-cmd", "score": 0.0008038857295393196}, {"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "ltablex-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "ltablex-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "ltablex-cmd", "score": 0.0005861357565780464}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ltablex-cmd", "score": 0.014532521139459619}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "ltablex-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "ltablex-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ltablex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ltablex-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "ltablex-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "ltablex-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "ltablex-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "ltablex-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "ltablex-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "ltablex-cmd", "score": 0.0313525090421608}], "amsopn": [{"caption": "\\sinh", "snippet": "\\sinh", "meta": "amsopn-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "amsopn-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "amsopn-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "amsopn-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "amsopn-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "amsopn-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "amsopn-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "amsopn-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "amsopn-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "amsopn-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "amsopn-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "amsopn-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "amsopn-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "amsopn-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "amsopn-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "amsopn-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "amsopn-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "amsopn-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "amsopn-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "amsopn-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "amsopn-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "amsopn-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "amsopn-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "amsopn-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "amsopn-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "amsopn-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "amsopn-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "amsopn-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "amsopn-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "amsopn-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "amsopn-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "amsopn-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "amsopn-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "amsopn-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "amsopn-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "amsopn-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "amsopn-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "amsopn-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "amsopn-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "amsopn-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "amsopn-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "amsopn-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "amsopn-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "amsopn-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "amsopn-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "amsopn-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "amsopn-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "amsopn-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "amsopn-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "amsopn-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "amsopn-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "amsopn-cmd", "score": 0.0004286136584068833}, {"caption": "\\do", "snippet": "\\do", "meta": "amsopn-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "amsopn-cmd", "score": 0.0063276692758974925}], "topcoman": [{"caption": "\\listing{}", "snippet": "\\listing{$1}", "meta": "topcoman-cmd", "score": 0.00023765162173466673}, {"caption": "\\micro", "snippet": "\\micro", "meta": "topcoman-cmd", "score": 0.011051971930487929}, {"caption": "\\gradi", "snippet": "\\gradi", "meta": "topcoman-cmd", "score": 0.00023765162173466673}, {"caption": "\\unit[]{}", "snippet": "\\unit[$1]{$2}", "meta": "topcoman-cmd", "score": 0.028299796173135428}, {"caption": "\\unit{}", "snippet": "\\unit{$1}", "meta": "topcoman-cmd", "score": 0.028299796173135428}, {"caption": "\\ped{}", "snippet": "\\ped{$1}", "meta": "topcoman-cmd", "score": 0.0007129548652040002}, {"caption": "\\ohm", "snippet": "\\ohm", "meta": "topcoman-cmd", "score": 0.0038146685721293138}, {"caption": "\\gei", "snippet": "\\gei", "meta": "topcoman-cmd", "score": 0.00023765162173466673}], "topfront": [{"caption": "\\corsodilaurea{}", "snippet": "\\corsodilaurea{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeQuartoTomo{}", "snippet": "\\NomeQuartoTomo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\ciclodidottorato{}", "snippet": "\\ciclodidottorato{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\CorsoDiLaureaIn{}", "snippet": "\\CorsoDiLaureaIn{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\ateneo{}", "snippet": "\\ateneo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\retrofrontespizio{}", "snippet": "\\retrofrontespizio{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\InName{}", "snippet": "\\InName{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\secondocandidato{}", "snippet": "\\secondocandidato{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeMonografia{}", "snippet": "\\NomeMonografia{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeTutoreAziendale{}", "snippet": "\\NomeTutoreAziendale{$1}", "meta": "topfront-cmd", "score": 0.00047530324346933345}, {"caption": "\\TutorName{}", "snippet": "\\TutorName{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeDissertazione{}", "snippet": "\\NomeDissertazione{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\sedutadilaurea{}", "snippet": "\\sedutadilaurea{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\logosede{}", "snippet": "\\logosede{$1}", "meta": "topfront-cmd", "score": 0.00047530324346933345}, {"caption": "\\TesiDiLaurea{}", "snippet": "\\TesiDiLaurea{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeTerzoTomo{}", "snippet": "\\NomeTerzoTomo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\AdvisorName{}", "snippet": "\\AdvisorName{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\facolta[]{}", "snippet": "\\facolta[$1]{$2}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\CycleName{}", "snippet": "\\CycleName{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomePrimoTomo{}", "snippet": "\\NomePrimoTomo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\candidato{}", "snippet": "\\candidato{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\NomeSecondoTomo{}", "snippet": "\\NomeSecondoTomo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\titolo{}", "snippet": "\\titolo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\CandidateName{}", "snippet": "\\CandidateName{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\secondorelatore{}", "snippet": "\\secondorelatore{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\FacoltaDi{}", "snippet": "\\FacoltaDi{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\nomeateneo{}", "snippet": "\\nomeateneo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\DottoratoIn{}", "snippet": "\\DottoratoIn{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\sottotitolo{}", "snippet": "\\sottotitolo{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\relatore{}", "snippet": "\\relatore{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}, {"caption": "\\tutoreaziendale{}", "snippet": "\\tutoreaziendale{$1}", "meta": "topfront-cmd", "score": 0.00023765162173466673}], "mathspec": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "mathspec-cmd", "score": 0.00021116765384691477}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "mathspec-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "mathspec-cmd", "score": 0.2864294797053033}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "mathspec-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "mathspec-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "mathspec-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "mathspec-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "mathspec-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "mathspec-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "mathspec-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "mathspec-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "mathspec-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "mathspec-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "mathspec-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "mathspec-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "mathspec-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "mathspec-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "mathspec-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "mathspec-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mathspec-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "mathspec-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "mathspec-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "mathspec-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "mathspec-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mathspec-cmd", "score": 0.008565354665444157}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "mathspec-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "mathspec-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "mathspec-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mathspec-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "mathspec-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "mathspec-cmd", "score": 0.0063276692758974925}], "overpic": [{"caption": "\\csname", "snippet": "\\csname", "meta": "overpic-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "overpic-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "overpic-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "overpic-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "overpic-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "overpic-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "overpic-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "overpic-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "overpic-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "overpic-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "overpic-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "overpic-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "overpic-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "overpic-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "overpic-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "overpic-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "overpic-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "overpic-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "overpic-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "overpic-cmd", "score": 0.004719094298848707}], "tkz-euclide": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-euclide-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "tkz-euclide-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "tkz-euclide-cmd", "score": 0.00031058155311734754}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tkz-euclide-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tkz-euclide-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tkz-euclide-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-euclide-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tkz-euclide-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-euclide-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tkz-euclide-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-euclide-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tkz-euclide-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tkz-euclide-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-euclide-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tkz-euclide-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-euclide-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tkz-euclide-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-euclide-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tkz-euclide-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tkz-euclide-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tkz-euclide-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tkz-euclide-cmd", "score": 0.2864294797053033}], "morewrites": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "morewrites-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "morewrites-cmd", "score": 0.2864294797053033}], "pgflibraryshapes": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgflibraryshapes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgflibraryshapes-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgflibraryshapes-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgflibraryshapes-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryshapes-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgflibraryshapes-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryshapes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgflibraryshapes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgflibraryshapes-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryshapes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgflibraryshapes-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgflibraryshapes-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgflibraryshapes-cmd", "score": 0.2864294797053033}], "pdfcolparallel": [{"caption": "\\empty", "snippet": "\\empty", "meta": "pdfcolparallel-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "pdfcolparallel-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "pdfcolparallel-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pdfcolparallel-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pdfcolparallel-cmd", "score": 0.00037306820619479756}, {"caption": "\\ParallelRText{}", "snippet": "\\ParallelRText{$1}", "meta": "pdfcolparallel-cmd", "score": 0.0005986518360651812}, {"caption": "\\ParallelLText{}", "snippet": "\\ParallelLText{$1}", "meta": "pdfcolparallel-cmd", "score": 0.0005986518360651812}, {"caption": "\\ParallelPar", "snippet": "\\ParallelPar", "meta": "pdfcolparallel-cmd", "score": 0.0005986518360651812}], "aeguill": [{"caption": "\\guillemotleft", "snippet": "\\guillemotleft", "meta": "aeguill-cmd", "score": 9.764370963946686e-05}, {"caption": "\\guillemotright", "snippet": "\\guillemotright", "meta": "aeguill-cmd", "score": 9.764370963946686e-05}, {"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "aeguill-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "aeguill-cmd", "score": 0.008427383388519996}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aeguill-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "aeguill-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "aeguill-cmd", "score": 0.021170869458413965}], "changes": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "changes-cmd", "score": 0.04598628699063736}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "changes-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "changes-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "changes-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "changes-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "changes-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "changes-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "changes-cmd", "score": 0.028955796305270766}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "changes-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "changes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "changes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "changes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "changes-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "changes-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "changes-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "changes-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "changes-cmd", "score": 0.0018957469739775527}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "changes-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "changes-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "changes-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "changes-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "changes-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "changes-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "changes-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "changes-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "changes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "changes-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "changes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "changes-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "changes-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "changes-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "changes-cmd", "score": 0.2864294797053033}], "droidmono": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "droidmono-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "droidmono-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "droidmono-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "droidmono-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "droidmono-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "droidmono-cmd", "score": 0.0018957469739775527}, {"caption": "\\scshape", "snippet": "\\scshape", "meta": "droidmono-cmd", "score": 0.05364108855914402}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "droidmono-cmd", "score": 0.00037306820619479756}], "tgheros": [{"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "tgheros-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "tgheros-cmd", "score": 0.008427383388519996}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgheros-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgheros-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgheros-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgheros-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgheros-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgheros-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgheros-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgheros-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgheros-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgheros-cmd", "score": 0.021170869458413965}], "har2nat": [{"caption": "\\citeasnoun{}", "snippet": "\\citeasnoun{$1}", "meta": "har2nat-cmd", "score": 0.010452591644582749}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "har2nat-cmd", "score": 2.341195220791228}, {"caption": "\\citealt{}", "snippet": "\\citealt{$1}", "meta": "har2nat-cmd", "score": 0.007302105441724955}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "har2nat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "har2nat-cmd", "score": 0.021170869458413965}, {"caption": "\\textsuperscript{}", "snippet": "\\textsuperscript{$1}", "meta": "har2nat-cmd", "score": 0.05216393882408519}, {"caption": "\\nocite{}", "snippet": "\\nocite{$1}", "meta": "har2nat-cmd", "score": 0.04990693820960752}, {"caption": "\\bibname", "snippet": "\\bibname", "meta": "har2nat-cmd", "score": 0.007599529252128519}, {"caption": "\\bibname{}", "snippet": "\\bibname{$1}", "meta": "har2nat-cmd", "score": 0.007599529252128519}, {"caption": "\\bibpunct", "snippet": "\\bibpunct", "meta": "har2nat-cmd", "score": 0.001148574749873469}, {"caption": "\\bibpunct{}{}{}{}{}{}", "snippet": "\\bibpunct{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "har2nat-cmd", "score": 0.001148574749873469}, {"caption": "\\bibpunct[]{}{}{}{}{}{}", "snippet": "\\bibpunct[$1]{$2}{$3}{$4}{$5}{$6}{$7}", "meta": "har2nat-cmd", "score": 0.001148574749873469}, {"caption": "\\citepalias{}", "snippet": "\\citepalias{$1}", "meta": "har2nat-cmd", "score": 0.00032712684909035603}, {"caption": "\\citepalias[][]{}", "snippet": "\\citepalias[$1][$2]{$3}", "meta": "har2nat-cmd", "score": 0.00032712684909035603}, {"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "har2nat-cmd", "score": 0.010304996748556729}, {"caption": "\\citep{}", "snippet": "\\citep{$1}", "meta": "har2nat-cmd", "score": 0.2941882834697057}, {"caption": "\\bibsection", "snippet": "\\bibsection", "meta": "har2nat-cmd", "score": 0.00038872734530908233}, {"caption": "\\bibsection{}", "snippet": "\\bibsection{$1}", "meta": "har2nat-cmd", "score": 0.00038872734530908233}, {"caption": "\\refname", "snippet": "\\refname", "meta": "har2nat-cmd", "score": 0.006490238196722249}, {"caption": "\\refname{}", "snippet": "\\refname{$1}", "meta": "har2nat-cmd", "score": 0.006490238196722249}, {"caption": "\\citealp{}", "snippet": "\\citealp{$1}", "meta": "har2nat-cmd", "score": 0.005275912376595364}, {"caption": "\\citealp[]{}", "snippet": "\\citealp[$1]{$2}", "meta": "har2nat-cmd", "score": 0.005275912376595364}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "har2nat-cmd", "score": 2.341195220791228}, {"caption": "\\citetalias{}", "snippet": "\\citetalias{$1}", "meta": "har2nat-cmd", "score": 0.001419571355756266}, {"caption": "\\bibitem{}", "snippet": "\\bibitem{$1}", "meta": "har2nat-cmd", "score": 0.3689547570562042}, {"caption": "\\bibitem[]{}", "snippet": "\\bibitem[$1]{$2}", "meta": "har2nat-cmd", "score": 0.3689547570562042}, {"caption": "\\citet{}", "snippet": "\\citet{$1}", "meta": "har2nat-cmd", "score": 0.09046048561361801}, {"caption": "\\defcitealias{}{}", "snippet": "\\defcitealias{$1}{$2}", "meta": "har2nat-cmd", "score": 0.00042021825647418025}, {"caption": "\\aftergroup", "snippet": "\\aftergroup", "meta": "har2nat-cmd", "score": 0.002020423627422133}, {"caption": "\\setcitestyle{}", "snippet": "\\setcitestyle{$1}", "meta": "har2nat-cmd", "score": 0.0015840652870152204}, {"caption": "\\citeyearpar{}", "snippet": "\\citeyearpar{$1}", "meta": "har2nat-cmd", "score": 0.001877888310324327}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "har2nat-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "har2nat-cmd", "score": 0.006776001543888959}, {"caption": "\\newblock", "snippet": "\\newblock", "meta": "har2nat-cmd", "score": 0.03684301726876973}, {"caption": "\\newblock{}", "snippet": "\\newblock{$1}", "meta": "har2nat-cmd", "score": 0.03684301726876973}, {"caption": "\\bibnumfmt", "snippet": "\\bibnumfmt", "meta": "har2nat-cmd", "score": 0.000353353600267394}, {"caption": "\\citeyear{}", "snippet": "\\citeyear{$1}", "meta": "har2nat-cmd", "score": 0.01091041305836494}, {"caption": "\\citeauthor{}", "snippet": "\\citeauthor{$1}", "meta": "har2nat-cmd", "score": 0.01359248786373484}, {"caption": "\\let", "snippet": "\\let", "meta": "har2nat-cmd", "score": 0.03789745970461662}], "matlab-prettifier": [{"caption": "\\mlttfamily", "snippet": "\\mlttfamily", "meta": "matlab-prettifier-cmd", "score": 0.000856282742498241}, {"caption": "\\vskip", "snippet": "\\vskip", "meta": "matlab-prettifier-cmd", "score": 0.05143052892347224}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "matlab-prettifier-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "matlab-prettifier-cmd", "score": 0.021170869458413965}, {"caption": "\\do", "snippet": "\\do", "meta": "matlab-prettifier-cmd", "score": 0.009278344180101056}, {"caption": "\\thelstlisting", "snippet": "\\thelstlisting", "meta": "matlab-prettifier-cmd", "score": 0.00012774128088872144}, {"caption": "\\lstinputlisting[]{}", "snippet": "\\lstinputlisting[$1]{$2}", "meta": "matlab-prettifier-cmd", "score": 0.011660477607086044}, {"caption": "\\lstinputlisting{}", "snippet": "\\lstinputlisting{$1}", "meta": "matlab-prettifier-cmd", "score": 0.011660477607086044}, {"caption": "\\space", "snippet": "\\space", "meta": "matlab-prettifier-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "matlab-prettifier-cmd", "score": 0.008565354665444157}, {"caption": "\\lstinline", "snippet": "\\lstinline", "meta": "matlab-prettifier-cmd", "score": 0.005972262850694285}, {"caption": "\\lstinline{}", "snippet": "\\lstinline{$1}", "meta": "matlab-prettifier-cmd", "score": 0.005972262850694285}, {"caption": "\\lstlistoflistings", "snippet": "\\lstlistoflistings", "meta": "matlab-prettifier-cmd", "score": 0.005279080363360602}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "matlab-prettifier-cmd", "score": 0.00037306820619479756}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "matlab-prettifier-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "matlab-prettifier-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "matlab-prettifier-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "matlab-prettifier-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "matlab-prettifier-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "matlab-prettifier-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "matlab-prettifier-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "matlab-prettifier-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "matlab-prettifier-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "matlab-prettifier-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "matlab-prettifier-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "matlab-prettifier-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "matlab-prettifier-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "matlab-prettifier-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "matlab-prettifier-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "matlab-prettifier-cmd", "score": 0.2864294797053033}], "datetime2": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "datetime2-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "datetime2-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "datetime2-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "datetime2-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "datetime2-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "datetime2-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "datetime2-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "datetime2-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "datetime2-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "datetime2-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "datetime2-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "datetime2-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "datetime2-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "datetime2-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "datetime2-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "datetime2-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "datetime2-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "datetime2-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "datetime2-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "datetime2-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "datetime2-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datetime2-cmd", "score": 0.008565354665444157}], "lapdf": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "lapdf-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "lapdf-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "lapdf-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "lapdf-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "lapdf-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "lapdf-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "lapdf-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "lapdf-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "lapdf-cmd", "score": 0.028955796305270766}], "nccbbb": [{"caption": "\\bbbe", "snippet": "\\bbbe", "meta": "nccbbb-cmd", "score": 0.0013332214754983353}, {"caption": "\\bbbe[]", "snippet": "\\bbbe[$1]", "meta": "nccbbb-cmd", "score": 0.0013332214754983353}, {"caption": "\\bbbr", "snippet": "\\bbbr", "meta": "nccbbb-cmd", "score": 0.0015739010274051707}], "tgbonum": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgbonum-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgbonum-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgbonum-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgbonum-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgbonum-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgbonum-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgbonum-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgbonum-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgbonum-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgbonum-cmd", "score": 0.021170869458413965}], "thm-restate": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thm-restate-cmd", "score": 0.00037306820619479756}, {"caption": "\\listtheoremname", "snippet": "\\listtheoremname", "meta": "thm-restate-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\thmtformatoptarg", "snippet": "\\thmtformatoptarg", "meta": "thm-restate-cmd", "score": 6.353668036093916e-05}, {"caption": "\\listoftheorems[]", "snippet": "\\listoftheorems[$1]", "meta": "thm-restate-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\declaretheoremstyle[]{}", "snippet": "\\declaretheoremstyle[$1]{$2}", "meta": "thm-restate-cmd", "score": 0.0001168034231635369}, {"caption": "\\declaretheorem[]{}", "snippet": "\\declaretheorem[$1]{$2}", "meta": "thm-restate-cmd", "score": 0.0004904790216915127}, {"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "thm-restate-cmd", "score": 0.02533412165007986}, {"caption": "\\empty", "snippet": "\\empty", "meta": "thm-restate-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "thm-restate-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "thm-restate-cmd", "score": 0.008565354665444157}, {"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thm-restate-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thm-restate-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thm-restate-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thm-restate-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thm-restate-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thm-restate-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thm-restate-cmd", "score": 0.0006133100544751855}], "biblatex-chicago": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "biblatex-chicago-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "biblatex-chicago-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "biblatex-chicago-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-chicago-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "biblatex-chicago-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "biblatex-chicago-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "biblatex-chicago-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "biblatex-chicago-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "biblatex-chicago-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "biblatex-chicago-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "biblatex-chicago-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "biblatex-chicago-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "biblatex-chicago-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "biblatex-chicago-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "biblatex-chicago-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "biblatex-chicago-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "biblatex-chicago-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "biblatex-chicago-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "biblatex-chicago-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "biblatex-chicago-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "biblatex-chicago-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "biblatex-chicago-cmd", "score": 0.008565354665444157}], "pseudocode": [{"caption": "\\shadowbox{}", "snippet": "\\shadowbox{$1}", "meta": "pseudocode-cmd", "score": 0.00107667147399019}, {"caption": "\\doublebox", "snippet": "\\doublebox", "meta": "pseudocode-cmd", "score": 0.00015142240898356106}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "pseudocode-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\thisfancypage{}{}", "snippet": "\\thisfancypage{$1}{$2}", "meta": "pseudocode-cmd", "score": 0.00015142240898356106}, {"caption": "\\TheSbox", "snippet": "\\TheSbox", "meta": "pseudocode-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "pseudocode-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "pseudocode-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "pseudocode-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "pseudocode-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "pseudocode-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "pseudocode-cmd", "score": 0.0018957469739775527}], "imakeidx": [{"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "imakeidx-cmd", "score": 0.010304996748556729}, {"caption": "\\printindex", "snippet": "\\printindex", "meta": "imakeidx-cmd", "score": 0.004417016910870522}, {"caption": "\\index{}", "snippet": "\\index{$1}", "meta": "imakeidx-cmd", "score": 0.013774721817648336}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "imakeidx-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "imakeidx-cmd", "score": 0.008565354665444157}], "uri": [{"caption": "\\empty", "snippet": "\\empty", "meta": "uri-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "uri-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "uri-cmd", "score": 0.008565354665444157}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "uri-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "uri-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "uri-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "uri-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "uri-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "uri-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "uri-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "uri-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "uri-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "uri-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "uri-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\empty", "snippet": "\\empty", "meta": "uri-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "uri-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "uri-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "uri-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "uri-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "uri-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "uri-cmd", "score": 0.021170869458413965}], "tocvsec2": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tocvsec2-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tocvsec2-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "tocvsec2-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "tocvsec2-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tocvsec2-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "tocvsec2-cmd", "score": 0.0018957469739775527}], "graphbox": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "graphbox-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "graphbox-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "graphbox-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "graphbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "graphbox-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "graphbox-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "graphbox-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "graphbox-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "graphbox-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphbox-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "graphbox-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "graphbox-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "graphbox-cmd", "score": 0.004719094298848707}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "graphbox-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "graphbox-cmd", "score": 0.008565354665444157}], "limap": [{"caption": "\\MapContinuing{}", "snippet": "\\MapContinuing{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\MapTextFraction{}", "snippet": "\\MapTextFraction{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\MapBlockLabelFont{}", "snippet": "\\MapBlockLabelFont{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\Block{}", "snippet": "\\Block{$1}", "meta": "limap-cmd", "score": 0.011618215341095648}, {"caption": "\\MapRuleWidth{}", "snippet": "\\MapRuleWidth{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\MapTitleFraction{}", "snippet": "\\MapTitleFraction{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\MapContinued{}", "snippet": "\\MapContinued{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\WideBlock{}", "snippet": "\\WideBlock{$1}", "meta": "limap-cmd", "score": 0.002453536158989143}, {"caption": "\\MapParskip{}", "snippet": "\\MapParskip{$1}", "meta": "limap-cmd", "score": 7.216282820556303e-05}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "limap-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "limap-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "limap-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "limap-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "limap-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "limap-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "limap-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "limap-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "limap-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "limap-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "limap-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "limap-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "limap-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "limap-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "limap-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "limap-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "limap-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "limap-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "limap-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "limap-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "limap-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "limap-cmd", "score": 0.008565354665444157}, {"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "limap-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "limap-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "limap-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "limap-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "limap-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "limap-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "limap-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "limap-cmd", "score": 0.059857788139528495}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "limap-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "limap-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "limap-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "limap-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "limap-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "limap-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "limap-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "limap-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "limap-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "limap-cmd", "score": 0.0313525090421608}], "tikzscale": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikzscale-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikzscale-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikzscale-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikzscale-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikzscale-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikzscale-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzscale-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikzscale-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzscale-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikzscale-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikzscale-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikzscale-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzscale-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzscale-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "tikzscale-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "tikzscale-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "tikzscale-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "tikzscale-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "tikzscale-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "tikzscale-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "tikzscale-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "tikzscale-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "tikzscale-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "tikzscale-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "tikzscale-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "tikzscale-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "tikzscale-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "tikzscale-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "tikzscale-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikzscale-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "tikzscale-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "tikzscale-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "tikzscale-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "tikzscale-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikzscale-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikzscale-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikzscale-cmd", "score": 0.2864294797053033}], "savesym": [{"caption": "\\savesymbol{}", "snippet": "\\savesymbol{$1}", "meta": "savesym-cmd", "score": 6.662041157021826e-05}], "subscript": [{"caption": "\\textsubscript{}", "snippet": "\\textsubscript{$1}", "meta": "subscript-cmd", "score": 0.058405875394131175}], "letterspace": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "letterspace-cmd", "score": 0.00037306820619479756}], "mathastext": [{"caption": "\\Huge", "snippet": "\\Huge", "meta": "mathastext-cmd", "score": 0.04725806985998919}, {"caption": "\\sfdefault", "snippet": "\\sfdefault", "meta": "mathastext-cmd", "score": 0.008427383388519996}, {"caption": "\\sfdefault{}", "snippet": "\\sfdefault{$1}", "meta": "mathastext-cmd", "score": 0.008427383388519996}, {"caption": "\\implies", "snippet": "\\implies", "meta": "mathastext-cmd", "score": 0.021828316911576096}, {"caption": "\\mathrm{}", "snippet": "\\mathrm{$1}", "meta": "mathastext-cmd", "score": 0.19117752976172653}], "movie15": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "movie15-cmd", "score": 0.00037306820619479756}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "movie15-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "movie15-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "movie15-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "movie15-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "movie15-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "movie15-cmd", "score": 0.0018957469739775527}], "refstyle": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "refstyle-cmd", "score": 0.00037306820619479756}], "pst-3d": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-3d-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-3d-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-3d-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-3d-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-3d-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-3d-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-3d-cmd", "score": 0.006520475264573554}], "rotfloat": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.00037306820619479756}, {"caption": "\\listof{}{}", "snippet": "\\listof{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.0009837365348002915}, {"caption": "\\floatplacement{}{}", "snippet": "\\floatplacement{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.0005815474978918903}, {"caption": "\\restylefloat{}", "snippet": "\\restylefloat{$1}", "meta": "rotfloat-cmd", "score": 0.0008866338267686714}, {"caption": "\\floatstyle{}", "snippet": "\\floatstyle{$1}", "meta": "rotfloat-cmd", "score": 0.0015470917047414941}, {"caption": "\\floatname{}{}", "snippet": "\\floatname{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.0011934321931750752}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rotfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "rotfloat-cmd", "score": 1.2569477427490174}, {"caption": "\\newfloat{}{}{}", "snippet": "\\newfloat{$1}{$2}{$3}", "meta": "rotfloat-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat", "snippet": "\\newfloat", "meta": "rotfloat-cmd", "score": 0.0012745874472536625}, {"caption": "\\newfloat{}", "snippet": "\\newfloat{$1}", "meta": "rotfloat-cmd", "score": 0.0012745874472536625}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rotfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "rotfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "rotfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "rotfloat-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "rotfloat-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "rotfloat-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "rotfloat-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "rotfloat-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "rotfloat-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rotfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "rotfloat-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "rotfloat-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "rotfloat-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "rotfloat-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "rotfloat-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "rotfloat-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "rotfloat-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "rotfloat-cmd", "score": 0.004719094298848707}], "progressbar": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "progressbar-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "progressbar-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "progressbar-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "progressbar-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "progressbar-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "progressbar-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "progressbar-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "progressbar-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "progressbar-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "progressbar-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "progressbar-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "progressbar-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "progressbar-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "progressbar-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "progressbar-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "progressbar-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "progressbar-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "progressbar-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "progressbar-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "progressbar-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "progressbar-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "progressbar-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "progressbar-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "progressbar-cmd", "score": 0.2864294797053033}, {"caption": "\\empty", "snippet": "\\empty", "meta": "progressbar-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "progressbar-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "progressbar-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "progressbar-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "progressbar-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "progressbar-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "progressbar-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "progressbar-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "progressbar-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "progressbar-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "progressbar-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "progressbar-cmd", "score": 0.028955796305270766}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "progressbar-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "progressbar-cmd", "score": 0.008565354665444157}], "pagecolor": [{"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pagecolor-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pagecolor-cmd", "score": 0.0008147200475678891}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pagecolor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pagecolor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pagecolor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pagecolor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pagecolor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pagecolor-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pagecolor-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pagecolor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pagecolor-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pagecolor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pagecolor-cmd", "score": 0.021170869458413965}], "gb4e": [{"caption": "\\ex", "snippet": "\\ex", "meta": "gb4e-cmd", "score": 0.00916111174873264}], "ESIEEcv": [{"caption": "\\let", "snippet": "\\let", "meta": "ESIEEcv-cmd", "score": 0.03789745970461662}, {"caption": "\\write", "snippet": "\\write", "meta": "ESIEEcv-cmd", "score": 0.0008038857295393196}, {"caption": "\\tabularxcolumn[]{}", "snippet": "\\tabularxcolumn[$1]{$2}", "meta": "ESIEEcv-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularxcolumn", "snippet": "\\tabularxcolumn", "meta": "ESIEEcv-cmd", "score": 0.00048507499766588637}, {"caption": "\\tabularx{}{}", "snippet": "\\tabularx{$1}{$2}", "meta": "ESIEEcv-cmd", "score": 0.0005861357565780464}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ESIEEcv-cmd", "score": 0.014532521139459619}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "ESIEEcv-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "ESIEEcv-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "ESIEEcv-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "ESIEEcv-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "ESIEEcv-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ESIEEcv-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "ESIEEcv-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "ESIEEcv-cmd", "score": 0.018615449342361392}], "ftnright": [{"caption": "\\footnotesize", "snippet": "\\footnotesize", "meta": "ftnright-cmd", "score": 0.2038592081252624}, {"caption": "\\footnotesize{}", "snippet": "\\footnotesize{$1}", "meta": "ftnright-cmd", "score": 0.2038592081252624}], "chemformula": [{"caption": "\\ch{}", "snippet": "\\ch{$1}", "meta": "chemformula-cmd", "score": 0.0013276105116845872}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "chemformula-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "chemformula-cmd", "score": 0.1789117552185788}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "chemformula-cmd", "score": 0.00037306820619479756}, {"caption": "\\nicefrac{}{}", "snippet": "\\nicefrac{$1}{$2}", "meta": "chemformula-cmd", "score": 0.0018011350423659288}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "chemformula-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "chemformula-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "chemformula-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "chemformula-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "chemformula-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "chemformula-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "chemformula-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "chemformula-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "chemformula-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "chemformula-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "chemformula-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "chemformula-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "chemformula-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "chemformula-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "chemformula-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "chemformula-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "chemformula-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "chemformula-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "chemformula-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "chemformula-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "chemformula-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "chemformula-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "chemformula-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "chemformula-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "chemformula-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "chemformula-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "chemformula-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "chemformula-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "chemformula-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "chemformula-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "chemformula-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "chemformula-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "chemformula-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "chemformula-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "chemformula-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "chemformula-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "chemformula-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "chemformula-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "chemformula-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "chemformula-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "chemformula-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "chemformula-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "chemformula-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "chemformula-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "chemformula-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "chemformula-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "chemformula-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "chemformula-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "chemformula-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "chemformula-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "chemformula-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "chemformula-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "chemformula-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "chemformula-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "chemformula-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemformula-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chemformula-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chemformula-cmd", "score": 0.2864294797053033}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemformula-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemformula-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chemformula-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chemformula-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chemformula-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chemformula-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chemformula-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemformula-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chemformula-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemformula-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chemformula-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chemformula-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "chemformula-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemformula-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemformula-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "chemformula-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "chemformula-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "chemformula-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "chemformula-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "chemformula-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemformula-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "chemformula-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "chemformula-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemformula-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "chemformula-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "chemformula-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chemformula-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chemformula-cmd", "score": 0.2864294797053033}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "chemformula-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "chemformula-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "chemformula-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "chemformula-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "chemformula-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "chemformula-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "chemformula-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "chemformula-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "chemformula-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "chemformula-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "chemformula-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "chemformula-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "chemformula-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "chemformula-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "chemformula-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "chemformula-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "chemformula-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "chemformula-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "chemformula-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "chemformula-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "chemformula-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "chemformula-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "chemformula-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "chemformula-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "chemformula-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "chemformula-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "chemformula-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "chemformula-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "chemformula-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "chemformula-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "chemformula-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "chemformula-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "chemformula-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "chemformula-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "chemformula-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "chemformula-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "chemformula-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "chemformula-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "chemformula-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "chemformula-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "chemformula-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "chemformula-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "chemformula-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "chemformula-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "chemformula-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "chemformula-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "chemformula-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "chemformula-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "chemformula-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "chemformula-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "chemformula-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "chemformula-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "chemformula-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "chemformula-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "chemformula-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "chemformula-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "chemformula-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "chemformula-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "chemformula-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "chemformula-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "chemformula-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "chemformula-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "chemformula-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "chemformula-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "chemformula-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "chemformula-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "chemformula-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "chemformula-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "chemformula-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "chemformula-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "chemformula-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "chemformula-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "chemformula-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "chemformula-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "chemformula-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "chemformula-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "chemformula-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "chemformula-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "chemformula-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "chemformula-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "chemformula-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "chemformula-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "chemformula-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "chemformula-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "chemformula-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "chemformula-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "chemformula-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "chemformula-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "chemformula-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "chemformula-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "chemformula-cmd", "score": 0.0058847868741168765}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "chemformula-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "chemformula-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "chemformula-cmd", "score": 0.18137737738638837}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "chemformula-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "chemformula-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "chemformula-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "chemformula-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "chemformula-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "chemformula-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chemformula-cmd", "score": 0.004719094298848707}, {"caption": "\\sfrac{}{}", "snippet": "\\sfrac{$1}{$2}", "meta": "chemformula-cmd", "score": 0.0030164694688453453}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemformula-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "chemformula-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "chemformula-cmd", "score": 0.0063276692758974925}], "pgfautomata": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfautomata-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfautomata-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfautomata-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfautomata-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfautomata-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfautomata-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfautomata-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfautomata-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfautomata-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfautomata-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfautomata-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfautomata-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfautomata-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfautomata-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfautomata-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfautomata-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfautomata-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfautomata-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfautomata-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfautomata-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfautomata-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfautomata-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfautomata-cmd", "score": 0.2864294797053033}], "pgfnodes": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfnodes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfnodes-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfnodes-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfnodes-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfnodes-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfnodes-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfnodes-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfnodes-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfnodes-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfnodes-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfnodes-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfnodes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfnodes-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfnodes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfnodes-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfnodes-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfnodes-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfnodes-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfnodes-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfnodes-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfnodes-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfnodes-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfnodes-cmd", "score": 0.2864294797053033}], "pgfarrows": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfarrows-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfarrows-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfarrows-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfarrows-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfarrows-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfarrows-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfarrows-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfarrows-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfarrows-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfarrows-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfarrows-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfarrows-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfarrows-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfarrows-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfarrows-cmd", "score": 0.2864294797053033}], "pst-text": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-text-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-text-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-text-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-text-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-text-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-text-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-text-cmd", "score": 0.006520475264573554}], "keystroke": [{"caption": "\\csname", "snippet": "\\csname", "meta": "keystroke-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "keystroke-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "keystroke-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "keystroke-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "keystroke-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "keystroke-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "keystroke-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "keystroke-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "keystroke-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "keystroke-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "keystroke-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "keystroke-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "keystroke-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "keystroke-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "keystroke-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "keystroke-cmd", "score": 0.004649150613625593}], "currvita": [{"caption": "\\cvheadingfont", "snippet": "\\cvheadingfont", "meta": "currvita-cmd", "score": 5.547871753177405e-05}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "currvita-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "currvita-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "currvita-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "currvita-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "currvita-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "currvita-cmd", "score": 0.0018957469739775527}], "subfigmat": [{"caption": "\\subfigure[]{}", "snippet": "\\subfigure[$1]{$2}", "meta": "subfigmat-cmd", "score": 0.037856842641104005}, {"caption": "\\subref{}", "snippet": "\\subref{$1}", "meta": "subfigmat-cmd", "score": 0.007192033516871399}, {"caption": "\\subfigure[]{}", "snippet": "\\subfigure[$1]{$2}", "meta": "subfigmat-cmd", "score": 0.037856842641104005}], "boxhandler": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "boxhandler-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "boxhandler-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "boxhandler-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "boxhandler-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "boxhandler-cmd", "score": 0.0018957469739775527}, {"caption": "\\pbox{}{}", "snippet": "\\pbox{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.0010883030320478486}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "boxhandler-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "boxhandler-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "boxhandler-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "boxhandler-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "boxhandler-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "boxhandler-cmd", "score": 0.028955796305270766}], "media9": [{"caption": "\\empty", "snippet": "\\empty", "meta": "media9-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "media9-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "media9-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "media9-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "media9-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "media9-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "media9-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "media9-cmd", "score": 0.2864294797053033}], "translator": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "translator-cmd", "score": 0.00037306820619479756}], "german": [{"caption": "\\today", "snippet": "\\today", "meta": "german-cmd", "score": 0.10733849317324783}], "mhsetup": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mhsetup-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mhsetup-cmd", "score": 0.021170869458413965}], "nomentbl": [{"caption": "\\nomenclature[]{}{}", "snippet": "\\nomenclature[$1]{$2}{$3}", "meta": "nomentbl-cmd", "score": 0.016053526743355948}, {"caption": "\\nomenclature{}{}", "snippet": "\\nomenclature{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.016053526743355948}, {"caption": "\\nomlabel", "snippet": "\\nomlabel", "meta": "nomentbl-cmd", "score": 6.353668036093916e-05}, {"caption": "\\printnomenclature", "snippet": "\\printnomenclature", "meta": "nomentbl-cmd", "score": 0.0014526113324237952}, {"caption": "\\printnomenclature[]", "snippet": "\\printnomenclature[$1]", "meta": "nomentbl-cmd", "score": 0.0014526113324237952}, {"caption": "\\makenomenclature", "snippet": "\\makenomenclature", "meta": "nomentbl-cmd", "score": 0.002310610204652063}, {"caption": "\\nomgroup", "snippet": "\\nomgroup", "meta": "nomentbl-cmd", "score": 0.0005549290951493257}, {"caption": "\\nomgroup[]{}", "snippet": "\\nomgroup[$1]{$2}", "meta": "nomentbl-cmd", "score": 0.0005549290951493257}, {"caption": "\\nomname", "snippet": "\\nomname", "meta": "nomentbl-cmd", "score": 0.0015092617929470952}, {"caption": "\\nompreamble", "snippet": "\\nompreamble", "meta": "nomentbl-cmd", "score": 2.4350510995473236e-05}, {"caption": "\\nomentryend", "snippet": "\\nomentryend", "meta": "nomentbl-cmd", "score": 0.000137692304514793}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "nomentbl-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "nomentbl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "nomentbl-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "nomentbl-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "nomentbl-cmd", "score": 0.028955796305270766}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "nomentbl-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "nomentbl-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "nomentbl-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "nomentbl-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "nomentbl-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "nomentbl-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "nomentbl-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.018615449342361392}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "nomentbl-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "nomentbl-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "nomentbl-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "nomentbl-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "nomentbl-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "nomentbl-cmd", "score": 0.0018957469739775527}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "nomentbl-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "nomentbl-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "nomentbl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "nomentbl-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "nomentbl-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "nomentbl-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "nomentbl-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "nomentbl-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "nomentbl-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "nomentbl-cmd", "score": 0.0313525090421608}], "miller": [{"caption": "\\hkl", "snippet": "\\hkl", "meta": "miller-cmd", "score": 0.0034259481311452946}, {"caption": "\\hkl{}", "snippet": "\\hkl{$1}", "meta": "miller-cmd", "score": 0.0034259481311452946}, {"caption": "\\hkl[]", "snippet": "\\hkl[$1]", "meta": "miller-cmd", "score": 0.0034259481311452946}], "lpform": [{"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "lpform-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "lpform-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "lpform-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "lpform-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "lpform-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "lpform-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "lpform-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "lpform-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "lpform-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "lpform-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "lpform-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "lpform-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "lpform-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "lpform-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "lpform-cmd", "score": 0.0018957469739775527}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "lpform-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "lpform-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "lpform-cmd", "score": 0.009331077109224957}], "xepersian": [{"caption": "\\settextfont[]{}", "snippet": "\\settextfont[$1]{$2}", "meta": "xepersian-cmd", "score": 0.00015447355412753335}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xepersian-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xepersian-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "xepersian-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "xepersian-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xepersian-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xepersian-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xepersian-cmd", "score": 0.2864294797053033}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "xepersian-cmd", "score": 0.3277033727934986}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "xepersian-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "xepersian-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xepersian-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xepersian-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xepersian-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xepersian-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "xepersian-cmd", "score": 0.002958865219480927}], "chapterbib": [{"caption": "\\bibliographystyle{}", "snippet": "\\bibliographystyle{$1}", "meta": "chapterbib-cmd", "score": 0.25122317941387773}, {"caption": "\\bibliography{}", "snippet": "\\bibliography{$1}", "meta": "chapterbib-cmd", "score": 0.2659628337907604}, {"caption": "\\include{}", "snippet": "\\include{$1}", "meta": "chapterbib-cmd", "score": 0.1547080054979312}], "scalerel": [{"caption": "\\scaleto{}{}", "snippet": "\\scaleto{$1}{$2}", "meta": "scalerel-cmd", "score": 0.00027615383978106523}, {"caption": "\\csname", "snippet": "\\csname", "meta": "scalerel-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "scalerel-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "scalerel-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "scalerel-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "scalerel-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "scalerel-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "scalerel-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "scalerel-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "scalerel-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "scalerel-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "scalerel-cmd", "score": 0.028955796305270766}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "scalerel-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "scalerel-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "scalerel-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "scalerel-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "scalerel-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "scalerel-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "scalerel-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "scalerel-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "scalerel-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "scalerel-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "scalerel-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "scalerel-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "scalerel-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "scalerel-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "scalerel-cmd", "score": 0.004649150613625593}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "scalerel-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "scalerel-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "scalerel-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "scalerel-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "scalerel-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "scalerel-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "scalerel-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "scalerel-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "scalerel-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "scalerel-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "scalerel-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "scalerel-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "scalerel-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "scalerel-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "scalerel-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "scalerel-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "scalerel-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "scalerel-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "scalerel-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "scalerel-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "scalerel-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "scalerel-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "scalerel-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "scalerel-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "scalerel-cmd", "score": 0.004719094298848707}], "extarrows": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "extarrows-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "extarrows-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "extarrows-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "extarrows-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "extarrows-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "extarrows-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "extarrows-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "extarrows-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "extarrows-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "extarrows-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "extarrows-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "extarrows-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "extarrows-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "extarrows-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "extarrows-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "extarrows-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "extarrows-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "extarrows-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "extarrows-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "extarrows-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "extarrows-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "extarrows-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "extarrows-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "extarrows-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "extarrows-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "extarrows-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "extarrows-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "extarrows-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "extarrows-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "extarrows-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "extarrows-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "extarrows-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "extarrows-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "extarrows-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "extarrows-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "extarrows-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "extarrows-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "extarrows-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "extarrows-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "extarrows-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "extarrows-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "extarrows-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "extarrows-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "extarrows-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "extarrows-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "extarrows-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "extarrows-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "extarrows-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "extarrows-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "extarrows-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "extarrows-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "extarrows-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "extarrows-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "extarrows-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "extarrows-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "extarrows-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "extarrows-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "extarrows-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "extarrows-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "extarrows-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "extarrows-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "extarrows-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "extarrows-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "extarrows-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "extarrows-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "extarrows-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "extarrows-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "extarrows-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "extarrows-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "extarrows-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "extarrows-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "extarrows-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "extarrows-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "extarrows-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "extarrows-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "extarrows-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "extarrows-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "extarrows-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "extarrows-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "extarrows-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "extarrows-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "extarrows-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "extarrows-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "extarrows-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "extarrows-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "extarrows-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "extarrows-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "extarrows-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "extarrows-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "extarrows-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "extarrows-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "extarrows-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "extarrows-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "extarrows-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "extarrows-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "extarrows-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "extarrows-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "extarrows-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "extarrows-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "extarrows-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "extarrows-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "extarrows-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "extarrows-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "extarrows-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "extarrows-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "extarrows-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "extarrows-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "extarrows-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "extarrows-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "extarrows-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "extarrows-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "extarrows-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "extarrows-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "extarrows-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "extarrows-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "extarrows-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "extarrows-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "extarrows-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "extarrows-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "extarrows-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "extarrows-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "extarrows-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "extarrows-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "extarrows-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "extarrows-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "extarrows-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "extarrows-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "extarrows-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "extarrows-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "extarrows-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "extarrows-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "extarrows-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "extarrows-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "extarrows-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "extarrows-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "extarrows-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "extarrows-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "extarrows-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "extarrows-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "extarrows-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "extarrows-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "extarrows-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "extarrows-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "extarrows-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "extarrows-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "extarrows-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "extarrows-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "extarrows-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "extarrows-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "extarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "extarrows-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "extarrows-cmd", "score": 0.0063276692758974925}], "listingsutf8": [{"caption": "\\vskip", "snippet": "\\vskip", "meta": "listingsutf8-cmd", "score": 0.05143052892347224}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "listingsutf8-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "listingsutf8-cmd", "score": 0.021170869458413965}, {"caption": "\\do", "snippet": "\\do", "meta": "listingsutf8-cmd", "score": 0.009278344180101056}, {"caption": "\\thelstlisting", "snippet": "\\thelstlisting", "meta": "listingsutf8-cmd", "score": 0.00012774128088872144}, {"caption": "\\lstinputlisting[]{}", "snippet": "\\lstinputlisting[$1]{$2}", "meta": "listingsutf8-cmd", "score": 0.011660477607086044}, {"caption": "\\lstinputlisting{}", "snippet": "\\lstinputlisting{$1}", "meta": "listingsutf8-cmd", "score": 0.011660477607086044}, {"caption": "\\space", "snippet": "\\space", "meta": "listingsutf8-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "listingsutf8-cmd", "score": 0.008565354665444157}, {"caption": "\\lstinline", "snippet": "\\lstinline", "meta": "listingsutf8-cmd", "score": 0.005972262850694285}, {"caption": "\\lstinline{}", "snippet": "\\lstinline{$1}", "meta": "listingsutf8-cmd", "score": 0.005972262850694285}, {"caption": "\\lstlistoflistings", "snippet": "\\lstlistoflistings", "meta": "listingsutf8-cmd", "score": 0.005279080363360602}, {"caption": "\\csname", "snippet": "\\csname", "meta": "listingsutf8-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "listingsutf8-cmd", "score": 0.002958865219480927}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "listingsutf8-cmd", "score": 0.00037306820619479756}], "forloop": [{"caption": "\\forloop{}{}{}{}", "snippet": "\\forloop{$1}{$2}{$3}{$4}", "meta": "forloop-cmd", "score": 0.00029867998381154486}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "forloop-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "forloop-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "forloop-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "forloop-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "forloop-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "forloop-cmd", "score": 0.0018957469739775527}], "xymtex": [{"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "xymtex-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "xymtex-cmd", "score": 0.022224283488673075}, {"caption": "\\mathcal{}", "snippet": "\\mathcal{$1}", "meta": "xymtex-cmd", "score": 0.35084018920966636}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "xymtex-cmd", "score": 0.002995924112493351}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "xymtex-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xymtex-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xymtex-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "xymtex-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "xymtex-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "xymtex-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "xymtex-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "xymtex-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xymtex-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "xymtex-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "xymtex-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xymtex-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "xymtex-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "xymtex-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xymtex-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xymtex-cmd", "score": 0.2864294797053033}], "eqlist": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "eqlist-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "eqlist-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "eqlist-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "eqlist-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "eqlist-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "eqlist-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "eqlist-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "eqlist-cmd", "score": 0.018615449342361392}, {"caption": "\\csname", "snippet": "\\csname", "meta": "eqlist-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "eqlist-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "eqlist-cmd", "score": 0.021170869458413965}, {"caption": "\\eqparbox{}{}", "snippet": "\\eqparbox{$1}{$2}", "meta": "eqlist-cmd", "score": 2.9423534119530166e-05}, {"caption": "\\item", "snippet": "\\item", "meta": "eqlist-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "eqlist-cmd", "score": 3.800886892251021}], "tgschola": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgschola-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgschola-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgschola-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgschola-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgschola-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgschola-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgschola-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgschola-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgschola-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgschola-cmd", "score": 0.021170869458413965}], "mfirstuc": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "mfirstuc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "mfirstuc-cmd", "score": 0.021170869458413965}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "mfirstuc-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "mfirstuc-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "mfirstuc-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "mfirstuc-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "mfirstuc-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "mfirstuc-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "mfirstuc-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "mfirstuc-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "mfirstuc-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "mfirstuc-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "mfirstuc-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "mfirstuc-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "mfirstuc-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "mfirstuc-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "mfirstuc-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "mfirstuc-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "mfirstuc-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "mfirstuc-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "mfirstuc-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "mfirstuc-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "mfirstuc-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "mfirstuc-cmd", "score": 0.008565354665444157}], "gloss": [{"caption": "\\makegloss", "snippet": "\\makegloss", "meta": "gloss-cmd", "score": 0.0018653410309739879}], "ltxcmds": [{"caption": "\\csname", "snippet": "\\csname", "meta": "ltxcmds-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "ltxcmds-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "ltxcmds-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "ltxcmds-cmd", "score": 0.021170869458413965}], "outlines": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "outlines-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "outlines-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "outlines-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "outlines-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "outlines-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "outlines-cmd", "score": 0.0018957469739775527}], "typearea": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "typearea-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "typearea-cmd", "score": 0.1789117552185788}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "typearea-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "typearea-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "typearea-cmd", "score": 0.000396664302361659}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "typearea-cmd", "score": 0.00037306820619479756}], "currfile": [{"caption": "\\currfiledir", "snippet": "\\currfiledir", "meta": "currfile-cmd", "score": 0.0002459788020229296}, {"caption": "\\empty", "snippet": "\\empty", "meta": "currfile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "currfile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "currfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "currfile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "currfile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "currfile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "currfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "currfile-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "currfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "currfile-cmd", "score": 0.021170869458413965}], "toptesi": [{"caption": "\\tomo", "snippet": "\\tomo", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\mainmatter", "snippet": "\\mainmatter", "meta": "toptesi-cmd", "score": 0.025705092792367497}, {"caption": "\\ringraziamenti", "snippet": "\\ringraziamenti", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\sommario", "snippet": "\\sommario", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\NoteWhiteLine", "snippet": "\\NoteWhiteLine", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\paginavuota", "snippet": "\\paginavuota", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\nota{}", "snippet": "\\nota{$1}", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\indici", "snippet": "\\indici", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\csname", "snippet": "\\csname", "meta": "toptesi-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "toptesi-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "toptesi-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "toptesi-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "toptesi-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "toptesi-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "toptesi-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "toptesi-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "toptesi-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "toptesi-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "toptesi-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "toptesi-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "toptesi-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "toptesi-cmd", "score": 0.004649150613625593}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "toptesi-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "toptesi-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "toptesi-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "toptesi-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "toptesi-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "toptesi-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "toptesi-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "toptesi-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "toptesi-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "toptesi-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "toptesi-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "toptesi-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "toptesi-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "toptesi-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "toptesi-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "toptesi-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "toptesi-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "toptesi-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "toptesi-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "toptesi-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "toptesi-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "toptesi-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "toptesi-cmd", "score": 0.004719094298848707}, {"caption": "\\listing{}", "snippet": "\\listing{$1}", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\micro", "snippet": "\\micro", "meta": "toptesi-cmd", "score": 0.011051971930487929}, {"caption": "\\gradi", "snippet": "\\gradi", "meta": "toptesi-cmd", "score": 0.00023765162173466673}, {"caption": "\\unit[]{}", "snippet": "\\unit[$1]{$2}", "meta": "toptesi-cmd", "score": 0.028299796173135428}, {"caption": "\\unit{}", "snippet": "\\unit{$1}", "meta": "toptesi-cmd", "score": 0.028299796173135428}, {"caption": "\\ped{}", "snippet": "\\ped{$1}", "meta": "toptesi-cmd", "score": 0.0007129548652040002}, {"caption": "\\ohm", "snippet": "\\ohm", "meta": "toptesi-cmd", "score": 0.0038146685721293138}, {"caption": "\\gei", "snippet": "\\gei", "meta": "toptesi-cmd", "score": 0.00023765162173466673}], "amsrefs": [{"caption": "\\ndash", "snippet": "\\ndash", "meta": "amsrefs-cmd", "score": 0.0003420867634658178}, {"caption": "\\bib{}{}{}", "snippet": "\\bib{$1}{$2}{$3}", "meta": "amsrefs-cmd", "score": 0.0017473230242849183}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "amsrefs-cmd", "score": 2.341195220791228}], "sistyle": [{"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "sistyle-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "sistyle-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "sistyle-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "sistyle-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "sistyle-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "sistyle-cmd", "score": 0.0063276692758974925}], "suffix": [{"caption": "\\let", "snippet": "\\let", "meta": "suffix-cmd", "score": 0.03789745970461662}], "sansmath": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "sansmath-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "sansmath-cmd", "score": 0.021170869458413965}], "tikz-qtree": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-qtree-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-qtree-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-qtree-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-qtree-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-qtree-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-qtree-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-qtree-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-qtree-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-qtree-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-qtree-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-qtree-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-qtree-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-qtree-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-qtree-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-qtree-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-qtree-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-qtree-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-qtree-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-qtree-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-qtree-cmd", "score": 0.2864294797053033}], "floatpag": [{"caption": "\\rotfloatpagestyle{}", "snippet": "\\rotfloatpagestyle{$1}", "meta": "floatpag-cmd", "score": 0.0004535003423927585}, {"caption": "\\floatpagestyle{}", "snippet": "\\floatpagestyle{$1}", "meta": "floatpag-cmd", "score": 0.0004535003423927585}], "colortab": [{"caption": "\\shadowbox{}", "snippet": "\\shadowbox{$1}", "meta": "colortab-cmd", "score": 0.00107667147399019}, {"caption": "\\doublebox", "snippet": "\\doublebox", "meta": "colortab-cmd", "score": 0.00015142240898356106}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "colortab-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\thisfancypage{}{}", "snippet": "\\thisfancypage{$1}{$2}", "meta": "colortab-cmd", "score": 0.00015142240898356106}, {"caption": "\\TheSbox", "snippet": "\\TheSbox", "meta": "colortab-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\green", "snippet": "\\green", "meta": "colortab-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "colortab-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "colortab-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "colortab-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "colortab-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "colortab-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "colortab-cmd", "score": 0.006520475264573554}], "parcolumns": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "parcolumns-cmd", "score": 0.00037306820619479756}], "dingbat": [{"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "dingbat-cmd", "score": 0.025060530944368123}], "ifoddpage": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "ifoddpage-cmd", "score": 0.00530510025314411}, {"caption": "\\checkoddpage", "snippet": "\\checkoddpage", "meta": "ifoddpage-cmd", "score": 0.00028672585452906425}], "kvoptions": [{"caption": "\\empty", "snippet": "\\empty", "meta": "kvoptions-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "kvoptions-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "kvoptions-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "kvoptions-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "kvoptions-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "kvoptions-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "kvoptions-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "kvoptions-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "kvoptions-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "kvoptions-cmd", "score": 0.021170869458413965}], "pst-tree": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-tree-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-tree-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-tree-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-tree-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-tree-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-tree-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-tree-cmd", "score": 0.006520475264573554}], "nonfloat": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "nonfloat-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "nonfloat-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "nonfloat-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "nonfloat-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "nonfloat-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "nonfloat-cmd", "score": 0.0018957469739775527}], "rsphrase": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "rsphrase-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "rsphrase-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "rsphrase-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "rsphrase-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "rsphrase-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "rsphrase-cmd", "score": 0.0018957469739775527}], "beramono": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "beramono-cmd", "score": 0.00037306820619479756}], "pgfbaseimage": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfbaseimage-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfbaseimage-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfbaseimage-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfbaseimage-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfbaseimage-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfbaseimage-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfbaseimage-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfbaseimage-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfbaseimage-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfbaseimage-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfbaseimage-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfbaseimage-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfbaseimage-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfbaseimage-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfbaseimage-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfbaseimage-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfbaseimage-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfbaseimage-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfbaseimage-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfbaseimage-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfbaseimage-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfbaseimage-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfbaseimage-cmd", "score": 0.2864294797053033}], "romannum": [{"caption": "\\thefootnote", "snippet": "\\thefootnote", "meta": "romannum-cmd", "score": 0.007676927812687567}, {"caption": "\\thefootnote{}", "snippet": "\\thefootnote{$1}", "meta": "romannum-cmd", "score": 0.007676927812687567}], "tgtermes": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgtermes-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgtermes-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgtermes-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgtermes-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgtermes-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgtermes-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgtermes-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgtermes-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgtermes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgtermes-cmd", "score": 0.021170869458413965}], "Alegreya": [{"caption": "\\rmfamily", "snippet": "\\rmfamily", "meta": "Alegreya-cmd", "score": 0.00898937903263608}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "Alegreya-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "Alegreya-cmd", "score": 0.008565354665444157}], "glossaries-extra": [{"caption": "\\gls{}", "snippet": "\\gls{$1}", "meta": "glossaries-extra-cmd", "score": 0.06939353309055077}, {"caption": "\\Gls{}", "snippet": "\\Gls{$1}", "meta": "glossaries-extra-cmd", "score": 0.003696678698317109}, {"caption": "\\makeglossaries", "snippet": "\\makeglossaries", "meta": "glossaries-extra-cmd", "score": 0.0056737600836936995}, {"caption": "\\newabbreviation{}{}{}", "snippet": "\\newabbreviation{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 0.00023275591440052114}, {"caption": "\\newglossaryentry{}{}", "snippet": "\\newglossaryentry{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.018524394136900962}, {"caption": "\\newglossary{}{}", "snippet": "\\newglossary{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 1.4547244650032571e-05}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\glslongpluralkey", "snippet": "\\glslongpluralkey", "meta": "glossaries-extra-cmd", "score": 1.4538687447297259e-05}, {"caption": "\\Glspl{}", "snippet": "\\Glspl{$1}", "meta": "glossaries-extra-cmd", "score": 0.0025291265119320736}, {"caption": "\\glossarysection", "snippet": "\\glossarysection", "meta": "glossaries-extra-cmd", "score": 9.579755294730752e-05}, {"caption": "\\printglossaries", "snippet": "\\printglossaries", "meta": "glossaries-extra-cmd", "score": 0.0010106582768889887}, {"caption": "\\Gls{}", "snippet": "\\Gls{$1}", "meta": "glossaries-extra-cmd", "score": 0.003696678698317109}, {"caption": "\\setglossarystyle{}", "snippet": "\\setglossarystyle{$1}", "meta": "glossaries-extra-cmd", "score": 0.0003758893277679221}, {"caption": "\\printglossary", "snippet": "\\printglossary", "meta": "glossaries-extra-cmd", "score": 0.009139682306158714}, {"caption": "\\printglossary[]", "snippet": "\\printglossary[$1]", "meta": "glossaries-extra-cmd", "score": 0.009139682306158714}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-extra-cmd", "score": 0.009278344180101056}, {"caption": "\\setglossarysection{}", "snippet": "\\setglossarysection{$1}", "meta": "glossaries-extra-cmd", "score": 3.6081414102781514e-05}, {"caption": "\\glsresetall", "snippet": "\\glsresetall", "meta": "glossaries-extra-cmd", "score": 0.0006123462672467326}, {"caption": "\\the", "snippet": "\\the", "meta": "glossaries-extra-cmd", "score": 0.007238960303946444}, {"caption": "\\acrshort{}", "snippet": "\\acrshort{$1}", "meta": "glossaries-extra-cmd", "score": 0.009936841864059727}, {"caption": "\\printnoidxglossary[]", "snippet": "\\printnoidxglossary[$1]", "meta": "glossaries-extra-cmd", "score": 0.00021912375285685037}, {"caption": "\\newglossary{}{}", "snippet": "\\newglossary{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 1.4547244650032571e-05}, {"caption": "\\gls{}", "snippet": "\\gls{$1}", "meta": "glossaries-extra-cmd", "score": 0.06939353309055077}, {"caption": "\\printnoidxglossaries", "snippet": "\\printnoidxglossaries", "meta": "glossaries-extra-cmd", "score": 5.6789564226023136e-05}, {"caption": "\\printindex", "snippet": "\\printindex", "meta": "glossaries-extra-cmd", "score": 0.004417016910870522}, {"caption": "\\defglsentryfmt[]{}", "snippet": "\\defglsentryfmt[$1]{$2}", "meta": "glossaries-extra-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\glspostdescription", "snippet": "\\glspostdescription", "meta": "glossaries-extra-cmd", "score": 0.0006337376579591112}, {"caption": "\\number", "snippet": "\\number", "meta": "glossaries-extra-cmd", "score": 0.000968714260809983}, {"caption": "\\glsaddall", "snippet": "\\glsaddall", "meta": "glossaries-extra-cmd", "score": 0.0008363820557740373}, {"caption": "\\glsaddall[]", "snippet": "\\glsaddall[$1]", "meta": "glossaries-extra-cmd", "score": 0.0008363820557740373}, {"caption": "\\makeglossaries", "snippet": "\\makeglossaries", "meta": "glossaries-extra-cmd", "score": 0.0056737600836936995}, {"caption": "\\glossaryname", "snippet": "\\glossaryname", "meta": "glossaries-extra-cmd", "score": 0.0006174536302752427}, {"caption": "\\newglossaryentry{}{}", "snippet": "\\newglossaryentry{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.018524394136900962}, {"caption": "\\glslabel", "snippet": "\\glslabel", "meta": "glossaries-extra-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\glsadd{}", "snippet": "\\glsadd{$1}", "meta": "glossaries-extra-cmd", "score": 3.0150373480213892e-05}, {"caption": "\\makenoidxglossaries", "snippet": "\\makenoidxglossaries", "meta": "glossaries-extra-cmd", "score": 0.0001382210125680805}, {"caption": "\\glsgenentryfmt", "snippet": "\\glsgenentryfmt", "meta": "glossaries-extra-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\acronymtype", "snippet": "\\acronymtype", "meta": "glossaries-extra-cmd", "score": 0.002000834271117562}, {"caption": "\\acrfull{}", "snippet": "\\acrfull{$1}", "meta": "glossaries-extra-cmd", "score": 0.0032622587277765067}, {"caption": "\\newacronym{}{}{}", "snippet": "\\newacronym{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 0.03193935544723102}, {"caption": "\\glspl{}", "snippet": "\\glspl{$1}", "meta": "glossaries-extra-cmd", "score": 0.0034025897522047717}, {"caption": "\\ifglsused{}{}{}", "snippet": "\\ifglsused{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 4.8990621725283124e-05}, {"caption": "\\acrlong{}", "snippet": "\\acrlong{$1}", "meta": "glossaries-extra-cmd", "score": 0.002517821598213752}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "glossaries-extra-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-extra-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "glossaries-extra-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "glossaries-extra-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "glossaries-extra-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "glossaries-extra-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "glossaries-extra-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "glossaries-extra-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "glossaries-extra-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "glossaries-extra-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "glossaries-extra-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "glossaries-extra-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "glossaries-extra-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "glossaries-extra-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "glossaries-extra-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "glossaries-extra-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "glossaries-extra-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "glossaries-extra-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "glossaries-extra-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "glossaries-extra-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "glossaries-extra-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "glossaries-extra-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "glossaries-extra-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "glossaries-extra-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "glossaries-extra-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "glossaries-extra-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "glossaries-extra-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "glossaries-extra-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "glossaries-extra-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "glossaries-extra-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "glossaries-extra-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "glossaries-extra-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "glossaries-extra-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "glossaries-extra-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "glossaries-extra-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "glossaries-extra-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "glossaries-extra-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "glossaries-extra-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "glossaries-extra-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "glossaries-extra-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "glossaries-extra-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "glossaries-extra-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "glossaries-extra-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "glossaries-extra-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "glossaries-extra-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "glossaries-extra-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "glossaries-extra-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "glossaries-extra-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "glossaries-extra-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "glossaries-extra-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "glossaries-extra-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "glossaries-extra-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "glossaries-extra-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "glossaries-extra-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "glossaries-extra-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "glossaries-extra-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "glossaries-extra-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "glossaries-extra-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "glossaries-extra-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "glossaries-extra-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "glossaries-extra-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "glossaries-extra-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "glossaries-extra-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "glossaries-extra-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "glossaries-extra-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "glossaries-extra-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "glossaries-extra-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "glossaries-extra-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "glossaries-extra-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "glossaries-extra-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "glossaries-extra-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "glossaries-extra-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "glossaries-extra-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "glossaries-extra-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "glossaries-extra-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "glossaries-extra-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "glossaries-extra-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "glossaries-extra-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "glossaries-extra-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "glossaries-extra-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "glossaries-extra-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "glossaries-extra-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "glossaries-extra-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "glossaries-extra-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "glossaries-extra-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "glossaries-extra-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "glossaries-extra-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "glossaries-extra-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "glossaries-extra-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "glossaries-extra-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "glossaries-extra-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "glossaries-extra-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "glossaries-extra-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "glossaries-extra-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "glossaries-extra-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "glossaries-extra-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "glossaries-extra-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "glossaries-extra-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "glossaries-extra-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "glossaries-extra-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "glossaries-extra-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "glossaries-extra-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "glossaries-extra-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "glossaries-extra-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "glossaries-extra-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "glossaries-extra-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "glossaries-extra-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "glossaries-extra-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "glossaries-extra-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "glossaries-extra-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "glossaries-extra-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "glossaries-extra-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "glossaries-extra-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "glossaries-extra-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "glossaries-extra-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "glossaries-extra-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "glossaries-extra-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "glossaries-extra-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "glossaries-extra-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "glossaries-extra-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "glossaries-extra-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "glossaries-extra-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "glossaries-extra-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "glossaries-extra-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "glossaries-extra-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "glossaries-extra-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "glossaries-extra-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "glossaries-extra-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "glossaries-extra-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "glossaries-extra-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "glossaries-extra-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "glossaries-extra-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "glossaries-extra-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "glossaries-extra-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "glossaries-extra-cmd", "score": 0.008565354665444157}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "glossaries-extra-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "glossaries-extra-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "glossaries-extra-cmd", "score": 0.18137737738638837}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "glossaries-extra-cmd", "score": 2.341195220791228}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossaries-extra-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "glossaries-extra-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "glossaries-extra-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "glossaries-extra-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "glossaries-extra-cmd", "score": 0.0018957469739775527}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "glossaries-extra-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "glossaries-extra-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "glossaries-extra-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "glossaries-extra-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-extra-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "glossaries-extra-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "glossaries-extra-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "glossaries-extra-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "glossaries-extra-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "glossaries-extra-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "glossaries-extra-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "glossaries-extra-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "glossaries-extra-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "glossaries-extra-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "glossaries-extra-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "glossaries-extra-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "glossaries-extra-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "glossaries-extra-cmd", "score": 0.0063276692758974925}], "dashrule": [{"caption": "\\hdashrule[]{}{}{}", "snippet": "\\hdashrule[$1]{$2}{$3}{$4}", "meta": "dashrule-cmd", "score": 0.00029867998381154486}], "bclogo": [{"caption": "\\csname", "snippet": "\\csname", "meta": "bclogo-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "bclogo-cmd", "score": 0.00037306820619479756}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "bclogo-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "bclogo-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "bclogo-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "bclogo-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "bclogo-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "bclogo-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "bclogo-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "bclogo-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "bclogo-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "bclogo-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "bclogo-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "bclogo-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "bclogo-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bclogo-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "bclogo-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "bclogo-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "bclogo-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bclogo-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bclogo-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bclogo-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "bclogo-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "bclogo-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "bclogo-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "bclogo-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bclogo-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "bclogo-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bclogo-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "bclogo-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "bclogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "bclogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "bclogo-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "bclogo-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "bclogo-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "bclogo-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "bclogo-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "bclogo-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "bclogo-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "bclogo-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "bclogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "bclogo-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "bclogo-cmd", "score": 0.004719094298848707}], "isomath": [{"caption": "\\empty", "snippet": "\\empty", "meta": "isomath-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "isomath-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "isomath-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "isomath-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "isomath-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "isomath-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "isomath-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "isomath-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "isomath-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "isomath-cmd", "score": 0.021170869458413965}], "tkz-graph": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-graph-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-graph-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tkz-graph-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tkz-graph-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tkz-graph-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-graph-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tkz-graph-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-graph-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tkz-graph-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tkz-graph-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tkz-graph-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "tkz-graph-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tkz-graph-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "tkz-graph-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-graph-cmd", "score": 0.004719094298848707}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "tkz-graph-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "tkz-graph-cmd", "score": 0.00031058155311734754}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-graph-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tkz-graph-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-graph-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-graph-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tkz-graph-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-graph-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tkz-graph-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-graph-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tkz-graph-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tkz-graph-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tkz-graph-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tkz-graph-cmd", "score": 0.2864294797053033}], "sourcesanspro": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "sourcesanspro-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "sourcesanspro-cmd", "score": 0.008565354665444157}], "longdivision": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "longdivision-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "longdivision-cmd", "score": 0.2864294797053033}], "xmpmulti": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xmpmulti-cmd", "score": 0.00037306820619479756}], "epsdice": [{"caption": "\\csname", "snippet": "\\csname", "meta": "epsdice-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "epsdice-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "epsdice-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "epsdice-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "epsdice-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "epsdice-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "epsdice-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "epsdice-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "epsdice-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "epsdice-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "epsdice-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "epsdice-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "epsdice-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "epsdice-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "epsdice-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "epsdice-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "epsdice-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "epsdice-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "epsdice-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "epsdice-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "epsdice-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "epsdice-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "epsdice-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "epsdice-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "epsdice-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "epsdice-cmd", "score": 0.004719094298848707}], "apptools": [{"caption": "\\appendix", "snippet": "\\appendix", "meta": "apptools-cmd", "score": 0.047007158741781095}, {"caption": "\\AtAppendix{}", "snippet": "\\AtAppendix{$1}", "meta": "apptools-cmd", "score": 8.82390883984482e-06}], "letltxmacro": [{"caption": "\\csname", "snippet": "\\csname", "meta": "letltxmacro-cmd", "score": 0.008565354665444157}], "menukeys": [{"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "menukeys-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "menukeys-cmd", "score": 0.354445763583904}, {"caption": "\\adjustbox{}{}", "snippet": "\\adjustbox{$1}{$2}", "meta": "menukeys-cmd", "score": 0.002008185536556013}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "menukeys-cmd", "score": 0.00037306820619479756}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "menukeys-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "menukeys-cmd", "score": 1.4425339817971206}, {"caption": "\\usepackage{}", "snippet": "\\usepackage{$1}", "meta": "menukeys-cmd", "score": 5.427890758130527}, {"caption": "\\usepackage[]{}", "snippet": "\\usepackage[$1]{$2}", "meta": "menukeys-cmd", "score": 5.427890758130527}, {"caption": "\\empty", "snippet": "\\empty", "meta": "menukeys-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "menukeys-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "menukeys-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "menukeys-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "menukeys-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "menukeys-cmd", "score": 0.2864294797053033}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\mathlarger{}", "snippet": "\\mathlarger{$1}", "meta": "menukeys-cmd", "score": 0.0031475241540308316}, {"caption": "\\smaller", "snippet": "\\smaller", "meta": "menukeys-cmd", "score": 0.001271007880944704}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "menukeys-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "menukeys-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "menukeys-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "menukeys-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "menukeys-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "menukeys-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "menukeys-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "menukeys-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "menukeys-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "menukeys-cmd", "score": 0.004649150613625593}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "menukeys-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "menukeys-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "menukeys-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "menukeys-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "menukeys-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "menukeys-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "menukeys-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "menukeys-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "menukeys-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "menukeys-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "menukeys-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "menukeys-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "menukeys-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "menukeys-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "menukeys-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "menukeys-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "menukeys-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "menukeys-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "menukeys-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "menukeys-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "menukeys-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "menukeys-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "menukeys-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "menukeys-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "menukeys-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "menukeys-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "menukeys-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "menukeys-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "menukeys-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "menukeys-cmd", "score": 0.2864294797053033}], "hypdvips": [{"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "hypdvips-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "hypdvips-cmd", "score": 0.8973590434087177}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "hypdvips-cmd", "score": 0.9202908262245683}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "hypdvips-cmd", "score": 7.847906405228455}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "hypdvips-cmd", "score": 0.1789117552185788}, {"caption": "\\global", "snippet": "\\global", "meta": "hypdvips-cmd", "score": 0.006609629561859019}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "hypdvips-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "hypdvips-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "hypdvips-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "hypdvips-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "hypdvips-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "hypdvips-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "hypdvips-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "hypdvips-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "hypdvips-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "hypdvips-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "hypdvips-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "hypdvips-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "hypdvips-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "hypdvips-cmd", "score": 0.009472569279662113}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.006492248863367502}, {"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "hypdvips-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.00014582556188448738}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.006963729684667191}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "hypdvips-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "hypdvips-cmd", "score": 0.005553384455935491}, {"caption": "\\string", "snippet": "\\string", "meta": "hypdvips-cmd", "score": 0.001042697111754002}, {"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "hypdvips-cmd", "score": 0.017289599800633146}, {"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "hypdvips-cmd", "score": 0.001509072212764015}, {"caption": "\\do", "snippet": "\\do", "meta": "hypdvips-cmd", "score": 0.009278344180101056}, {"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "hypdvips-cmd", "score": 7.849662248028187}, {"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.00978652043902115}, {"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "hypdvips-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.00012704528567339081}, {"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "hypdvips-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.00018777198999871106}, {"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "hypdvips-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "hypdvips-cmd", "score": 0.02873756018238537}, {"caption": "\\protect", "snippet": "\\protect", "meta": "hypdvips-cmd", "score": 0.0200686676229443}, {"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "hypdvips-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "hypdvips-cmd", "score": 7.950698053641679e-05}, {"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.00029737672328168955}, {"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.0073781967296121}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "hypdvips-cmd", "score": 0.002140559856649122}, {"caption": "\\alph", "snippet": "\\alph", "meta": "hypdvips-cmd", "score": 0.01034327266194849}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "hypdvips-cmd", "score": 0.01034327266194849}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "hypdvips-cmd", "score": 0.019788865471151957}, {"caption": "\\item", "snippet": "\\item", "meta": "hypdvips-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "hypdvips-cmd", "score": 3.800886892251021}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "hypdvips-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "hypdvips-cmd", "score": 0.2334089308452787}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "hypdvips-cmd", "score": 1.2569477427490174}, {"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "hypdvips-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.0019832324299155183}, {"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "hypdvips-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "hypdvips-cmd", "score": 0.007928096378157487}, {"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "hypdvips-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "hypdvips-cmd", "score": 0.0003680857021151614}, {"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.009652820108904094}, {"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "hypdvips-cmd", "score": 0.7504160124360846}, {"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "hypdvips-cmd", "score": 0.0005446476945175932}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "hypdvips-cmd", "score": 0.13586474005868793}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "hypdvips-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "hypdvips-cmd", "score": 0.8973590434087177}, {"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.27111130260612365}, {"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "hypdvips-cmd", "score": 0.0038703587462843594}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "hypdvips-cmd", "score": 0.03741172773691362}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "hypdvips-cmd", "score": 0.0004995635515943437}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "hypdvips-cmd", "score": 7.847906405228455}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "hypdvips-cmd", "score": 0.0174633138331273}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "hypdvips-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "hypdvips-cmd", "score": 0.006776001543888959}, {"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "hypdvips-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "hypdvips-cmd", "score": 6.006262128895586e-05}, {"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "hypdvips-cmd", "score": 0.00017906650306643613}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.20852115286477566}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "hypdvips-cmd", "score": 1.4380093454211778}, {"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "hypdvips-cmd", "score": 0.002233258780143355}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "hypdvips-cmd", "score": 0.002233258780143355}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "hypdvips-cmd", "score": 0.047007158741781095}, {"caption": "\\MP", "snippet": "\\MP", "meta": "hypdvips-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "hypdvips-cmd", "score": 0.00018344383742255004}, {"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "hypdvips-cmd", "score": 0.0005446476945175932}, {"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "hypdvips-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "hypdvips-cmd", "score": 0.0018503938529945614}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.07503475348393239}, {"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "hypdvips-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.0012546605780895737}, {"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "hypdvips-cmd", "score": 0.004515152477030062}, {"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "hypdvips-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "hypdvips-cmd", "score": 0.02445837629741638}, {"caption": "\\newline", "snippet": "\\newline", "meta": "hypdvips-cmd", "score": 0.3311721696201715}, {"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "hypdvips-cmd", "score": 0.06967310843464661}, {"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "hypdvips-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "hypdvips-cmd", "score": 0.0012064581899162352}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "hypdvips-cmd", "score": 0.9202908262245683}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.006492248863367502}, {"caption": "\\bookmarkget{}", "snippet": "\\bookmarkget{$1}", "meta": "hypdvips-cmd", "score": 0.00026847053008917257}, {"caption": "\\bookmarksetup{}", "snippet": "\\bookmarksetup{$1}", "meta": "hypdvips-cmd", "score": 0.001134118016265821}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "hypdvips-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "hypdvips-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "hypdvips-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "hypdvips-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "hypdvips-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hypdvips-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "hypdvips-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hypdvips-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "hypdvips-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hypdvips-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "hypdvips-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "hypdvips-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "hypdvips-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "hypdvips-cmd", "score": 0.2864294797053033}], "easyReview": [{"caption": "\\highlight{}", "snippet": "\\highlight{$1}", "meta": "easyReview-cmd", "score": 0.00021546602164732416}, {"caption": "\\highlight", "snippet": "\\highlight", "meta": "easyReview-cmd", "score": 0.00021546602164732416}, {"caption": "\\alert{}", "snippet": "\\alert{$1}", "meta": "easyReview-cmd", "score": 0.02756568949970745}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "easyReview-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "easyReview-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "easyReview-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "easyReview-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "easyReview-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "easyReview-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "easyReview-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "easyReview-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "easyReview-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "easyReview-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "easyReview-cmd", "score": 0.004649150613625593}, {"caption": "\\missingfigure[]{}", "snippet": "\\missingfigure[$1]{$2}", "meta": "easyReview-cmd", "score": 0.001558719179721163}, {"caption": "\\missingfigure", "snippet": "\\missingfigure", "meta": "easyReview-cmd", "score": 0.001558719179721163}, {"caption": "\\todototoc", "snippet": "\\todototoc", "meta": "easyReview-cmd", "score": 0.000325977535138643}, {"caption": "\\todo{}", "snippet": "\\todo{$1}", "meta": "easyReview-cmd", "score": 0.04115074278362878}, {"caption": "\\todo[]{}", "snippet": "\\todo[$1]{$2}", "meta": "easyReview-cmd", "score": 0.04115074278362878}, {"caption": "\\todo", "snippet": "\\todo", "meta": "easyReview-cmd", "score": 0.04115074278362878}, {"caption": "\\listoftodos", "snippet": "\\listoftodos", "meta": "easyReview-cmd", "score": 0.0005325975940754609}, {"caption": "\\listoftodos[]", "snippet": "\\listoftodos[$1]", "meta": "easyReview-cmd", "score": 0.0005325975940754609}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "easyReview-cmd", "score": 0.0174633138331273}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "easyReview-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "easyReview-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "easyReview-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "easyReview-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "easyReview-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "easyReview-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "easyReview-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "easyReview-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "easyReview-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "easyReview-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "easyReview-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "easyReview-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "easyReview-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "easyReview-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareRobustCommand{}{}", "snippet": "\\DeclareRobustCommand{$1}{$2}", "meta": "easyReview-cmd", "score": 0.0010373158471650705}, {"caption": "\\DeclareRobustCommand{}[]{}", "snippet": "\\DeclareRobustCommand{$1}[$2]{$3}", "meta": "easyReview-cmd", "score": 0.0010373158471650705}, {"caption": "\\sethlcolor{}", "snippet": "\\sethlcolor{$1}", "meta": "easyReview-cmd", "score": 0.01970230898277056}, {"caption": "\\st", "snippet": "\\st", "meta": "easyReview-cmd", "score": 0.004652662833362787}, {"caption": "\\st{}", "snippet": "\\st{$1}", "meta": "easyReview-cmd", "score": 0.004652662833362787}, {"caption": "\\def", "snippet": "\\def", "meta": "easyReview-cmd", "score": 0.21357759092476175}, {"caption": "\\hl{}", "snippet": "\\hl{$1}", "meta": "easyReview-cmd", "score": 0.03421486301062431}, {"caption": "\\sodef", "snippet": "\\sodef", "meta": "easyReview-cmd", "score": 0.0017045357696831268}, {"caption": "\\csname", "snippet": "\\csname", "meta": "easyReview-cmd", "score": 0.008565354665444157}, {"caption": "\\so", "snippet": "\\so", "meta": "easyReview-cmd", "score": 0.004308800134587786}, {"caption": "\\so{}", "snippet": "\\so{$1}", "meta": "easyReview-cmd", "score": 0.004308800134587786}, {"caption": "\\csname", "snippet": "\\csname", "meta": "easyReview-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "easyReview-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "easyReview-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "easyReview-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "easyReview-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "easyReview-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "easyReview-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "easyReview-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "easyReview-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "easyReview-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "easyReview-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "easyReview-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "easyReview-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "easyReview-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "easyReview-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "easyReview-cmd", "score": 0.2864294797053033}], "quoting": [{"caption": "\\par", "snippet": "\\par", "meta": "quoting-cmd", "score": 0.413853376001159}, {"caption": "\\empty", "snippet": "\\empty", "meta": "quoting-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "quoting-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "quoting-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "quoting-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "quoting-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "quoting-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "quoting-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "quoting-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "quoting-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "quoting-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "quoting-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "quoting-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "quoting-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "quoting-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "quoting-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "quoting-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "quoting-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "quoting-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "quoting-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "quoting-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "quoting-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "quoting-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "quoting-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "quoting-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "quoting-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "quoting-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "quoting-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "quoting-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "quoting-cmd", "score": 0.021170869458413965}, {"caption": "\\empty", "snippet": "\\empty", "meta": "quoting-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "quoting-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "quoting-cmd", "score": 0.008565354665444157}], "fouriernc": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fouriernc-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "fouriernc-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "fouriernc-cmd", "score": 0.021170869458413965}], "realboxes": [{"caption": "\\Rotatebox{}{}", "snippet": "\\Rotatebox{$1}{$2}", "meta": "realboxes-cmd", "score": 1.8920528094586312e-05}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "realboxes-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "realboxes-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "realboxes-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "realboxes-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "realboxes-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "realboxes-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "realboxes-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "realboxes-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "realboxes-cmd", "score": 0.028955796305270766}, {"caption": "\\shadowbox{}", "snippet": "\\shadowbox{$1}", "meta": "realboxes-cmd", "score": 0.00107667147399019}, {"caption": "\\doublebox", "snippet": "\\doublebox", "meta": "realboxes-cmd", "score": 0.00015142240898356106}, {"caption": "\\VerbatimEnvironment", "snippet": "\\VerbatimEnvironment", "meta": "realboxes-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\thisfancypage{}{}", "snippet": "\\thisfancypage{$1}{$2}", "meta": "realboxes-cmd", "score": 0.00015142240898356106}, {"caption": "\\TheSbox", "snippet": "\\TheSbox", "meta": "realboxes-cmd", "score": 4.5350034239275855e-05}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "realboxes-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "realboxes-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "realboxes-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "realboxes-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "realboxes-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "realboxes-cmd", "score": 0.0018957469739775527}], "etextools": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "etextools-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "etextools-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "etextools-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "etextools-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "etextools-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "etextools-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "etextools-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "etextools-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "etextools-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "etextools-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "etextools-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "etextools-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "etextools-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "etextools-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "etextools-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "etextools-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "etextools-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "etextools-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "etextools-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "etextools-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "etextools-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "etextools-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "etextools-cmd", "score": 0.008565354665444157}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "etextools-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "etextools-cmd", "score": 0.00031058155311734754}], "ccaption": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "ccaption-cmd", "score": 1.2569477427490174}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "ccaption-cmd", "score": 1.897791904799601}], "exercise": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "exercise-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "exercise-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "exercise-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "exercise-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "exercise-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "exercise-cmd", "score": 0.0018957469739775527}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "exercise-cmd", "score": 0.00037306820619479756}], "slantsc": [{"caption": "\\scshape", "snippet": "\\scshape", "meta": "slantsc-cmd", "score": 0.05364108855914402}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "slantsc-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "slantsc-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "slantsc-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "slantsc-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "slantsc-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "slantsc-cmd", "score": 0.0018957469739775527}], "glossary-longbooktabs": [{"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "glossary-longbooktabs-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "glossary-longbooktabs-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "glossary-longbooktabs-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "glossary-longbooktabs-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "glossary-longbooktabs-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "glossary-longbooktabs-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "glossary-longbooktabs-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "glossary-longbooktabs-cmd", "score": 0.059857788139528495}, {"caption": "\\endhead", "snippet": "\\endhead", "meta": "glossary-longbooktabs-cmd", "score": 0.0023853501147448834}, {"caption": "\\endfoot", "snippet": "\\endfoot", "meta": "glossary-longbooktabs-cmd", "score": 0.00044045261916551967}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "glossary-longbooktabs-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "glossary-longbooktabs-cmd", "score": 0.021170869458413965}, {"caption": "\\nopagebreak", "snippet": "\\nopagebreak", "meta": "glossary-longbooktabs-cmd", "score": 9.952664522415981e-05}, {"caption": "\\endfirsthead", "snippet": "\\endfirsthead", "meta": "glossary-longbooktabs-cmd", "score": 0.0016148498709822416}, {"caption": "\\endlastfoot", "snippet": "\\endlastfoot", "meta": "glossary-longbooktabs-cmd", "score": 0.00044045261916551967}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "glossary-longbooktabs-cmd", "score": 0.3277033727934986}, {"caption": "\\tablename", "snippet": "\\tablename", "meta": "glossary-longbooktabs-cmd", "score": 0.0029238994233674776}, {"caption": "\\pagebreak", "snippet": "\\pagebreak", "meta": "glossary-longbooktabs-cmd", "score": 0.0313525090421608}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "glossary-longbooktabs-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "glossary-longbooktabs-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "glossary-longbooktabs-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "glossary-longbooktabs-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "glossary-longbooktabs-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "glossary-longbooktabs-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "glossary-longbooktabs-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "glossary-longbooktabs-cmd", "score": 0.018615449342361392}], "pgflibraryarrows": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgflibraryarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgflibraryarrows-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgflibraryarrows-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgflibraryarrows-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgflibraryarrows-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgflibraryarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgflibraryarrows-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgflibraryarrows-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgflibraryarrows-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgflibraryarrows-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgflibraryarrows-cmd", "score": 0.2864294797053033}], "soulpos": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "soulpos-cmd", "score": 0.00037306820619479756}], "gmp": [{"caption": "\\par", "snippet": "\\par", "meta": "gmp-cmd", "score": 0.413853376001159}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gmp-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gmp-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "gmp-cmd", "score": 0.00037306820619479756}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "gmp-cmd", "score": 0.00021116765384691477}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "gmp-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "gmp-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "gmp-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "gmp-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "gmp-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "gmp-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "gmp-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "gmp-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "gmp-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gmp-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "gmp-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "gmp-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "gmp-cmd", "score": 0.004719094298848707}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "gmp-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "gmp-cmd", "score": 0.021170869458413965}], "csvsimple": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "csvsimple-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "csvsimple-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "csvsimple-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "csvsimple-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "csvsimple-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "csvsimple-cmd", "score": 0.0018957469739775527}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "csvsimple-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "csvsimple-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "csvsimple-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "csvsimple-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "csvsimple-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "csvsimple-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "csvsimple-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "csvsimple-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "csvsimple-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "csvsimple-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "csvsimple-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "csvsimple-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "csvsimple-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "csvsimple-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "csvsimple-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "csvsimple-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "csvsimple-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "csvsimple-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "csvsimple-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "csvsimple-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "csvsimple-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "csvsimple-cmd", "score": 0.008565354665444157}], "ebgaramond": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "ebgaramond-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ebgaramond-cmd", "score": 0.008565354665444157}], "boldline": [{"caption": "\\hlineB{}", "snippet": "\\hlineB{$1}", "meta": "boldline-cmd", "score": 0.0009735563258863602}, {"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "boldline-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "boldline-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "boldline-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "boldline-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "boldline-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "boldline-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "boldline-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "boldline-cmd", "score": 0.018615449342361392}], "fontaxes": [{"caption": "\\csname", "snippet": "\\csname", "meta": "fontaxes-cmd", "score": 0.008565354665444157}], "pbsi": [{"caption": "\\bsifamily", "snippet": "\\bsifamily", "meta": "pbsi-cmd", "score": 3.140504277052775e-05}], "tikz-qtree-compat": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-qtree-compat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tikz-qtree-compat-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tikz-qtree-compat-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-qtree-compat-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-compat-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tikz-qtree-compat-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-compat-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tikz-qtree-compat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tikz-qtree-compat-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tikz-qtree-compat-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tikz-qtree-compat-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tikz-qtree-compat-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tikz-qtree-compat-cmd", "score": 0.2864294797053033}], "ebgaramond-maths": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "ebgaramond-maths-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "ebgaramond-maths-cmd", "score": 0.008565354665444157}], "complexity": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "complexity-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "complexity-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "complexity-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "complexity-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "complexity-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "complexity-cmd", "score": 0.0018957469739775527}], "everysel": [{"caption": "\\selectfont", "snippet": "\\selectfont", "meta": "everysel-cmd", "score": 0.04598628699063736}], "txfontsb": [{"caption": "\\sqrt{}", "snippet": "\\sqrt{$1}", "meta": "txfontsb-cmd", "score": 0.20240160977404634}], "nath": [{"caption": "\\vert", "snippet": "\\vert", "meta": "nath-cmd", "score": 0.05152912629788525}, {"caption": "\\prod", "snippet": "\\prod", "meta": "nath-cmd", "score": 0.02549889375975901}, {"caption": "\\quad", "snippet": "\\quad", "meta": "nath-cmd", "score": 0.15242755832392743}, {"caption": "\\underbrace{}", "snippet": "\\underbrace{$1}", "meta": "nath-cmd", "score": 0.010373780436850907}, {"caption": "\\sum", "snippet": "\\sum", "meta": "nath-cmd", "score": 0.42607994509619934}, {"caption": "\\delimgrowth", "snippet": "\\delimgrowth", "meta": "nath-cmd", "score": 1.8073688234300064e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "nath-cmd", "score": 1.4341091141105058}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "nath-cmd", "score": 0.11280487530505384}, {"caption": "\\underline{}", "snippet": "\\underline{$1}", "meta": "nath-cmd", "score": 0.14748550887002482}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "nath-cmd", "score": 1.897791904799601}, {"caption": "\\qquad", "snippet": "\\qquad", "meta": "nath-cmd", "score": 0.0878145577017131}], "vietnam": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "vietnam-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "vietnam-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "vietnam-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "vietnam-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "vietnam-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "vietnam-cmd", "score": 0.0018957469739775527}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "vietnam-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "vietnam-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "vietnam-cmd", "score": 0.021170869458413965}], "answers": [{"caption": "\\endverbatim", "snippet": "\\endverbatim", "meta": "answers-cmd", "score": 0.0022216421267780076}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "answers-cmd", "score": 0.0072203369120285256}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "answers-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "answers-cmd", "score": 0.021170869458413965}, {"caption": "\\par", "snippet": "\\par", "meta": "answers-cmd", "score": 0.413853376001159}, {"caption": "\\verbatiminput{}", "snippet": "\\verbatiminput{$1}", "meta": "answers-cmd", "score": 0.0024547099784948665}, {"caption": "\\verbatiminput", "snippet": "\\verbatiminput", "meta": "answers-cmd", "score": 0.0024547099784948665}], "attachfile": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "attachfile-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "attachfile-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "attachfile-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "attachfile-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "attachfile-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "attachfile-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "attachfile-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "attachfile-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "attachfile-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "attachfile-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "attachfile-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "attachfile-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "attachfile-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "attachfile-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "attachfile-cmd", "score": 0.009472569279662113}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "attachfile-cmd", "score": 0.006492248863367502}, {"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "attachfile-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "attachfile-cmd", "score": 0.00014582556188448738}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "attachfile-cmd", "score": 0.006963729684667191}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "attachfile-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "attachfile-cmd", "score": 0.005553384455935491}, {"caption": "\\string", "snippet": "\\string", "meta": "attachfile-cmd", "score": 0.001042697111754002}, {"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "attachfile-cmd", "score": 0.017289599800633146}, {"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "attachfile-cmd", "score": 0.001509072212764015}, {"caption": "\\do", "snippet": "\\do", "meta": "attachfile-cmd", "score": 0.009278344180101056}, {"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "attachfile-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "attachfile-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "attachfile-cmd", "score": 7.849662248028187}, {"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "attachfile-cmd", "score": 0.00978652043902115}, {"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "attachfile-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "attachfile-cmd", "score": 0.00012704528567339081}, {"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "attachfile-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "attachfile-cmd", "score": 0.00018777198999871106}, {"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "attachfile-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "attachfile-cmd", "score": 0.02873756018238537}, {"caption": "\\protect", "snippet": "\\protect", "meta": "attachfile-cmd", "score": 0.0200686676229443}, {"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "attachfile-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "attachfile-cmd", "score": 7.950698053641679e-05}, {"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "attachfile-cmd", "score": 0.00029737672328168955}, {"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "attachfile-cmd", "score": 0.0073781967296121}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "attachfile-cmd", "score": 0.002140559856649122}, {"caption": "\\alph", "snippet": "\\alph", "meta": "attachfile-cmd", "score": 0.01034327266194849}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "attachfile-cmd", "score": 0.01034327266194849}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "attachfile-cmd", "score": 0.019788865471151957}, {"caption": "\\item", "snippet": "\\item", "meta": "attachfile-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "attachfile-cmd", "score": 3.800886892251021}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "attachfile-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "attachfile-cmd", "score": 0.2334089308452787}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "attachfile-cmd", "score": 1.2569477427490174}, {"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "attachfile-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "attachfile-cmd", "score": 0.0019832324299155183}, {"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "attachfile-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "attachfile-cmd", "score": 0.007928096378157487}, {"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "attachfile-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "attachfile-cmd", "score": 0.0003680857021151614}, {"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "attachfile-cmd", "score": 0.009652820108904094}, {"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "attachfile-cmd", "score": 0.7504160124360846}, {"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "attachfile-cmd", "score": 0.0005446476945175932}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "attachfile-cmd", "score": 0.13586474005868793}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "attachfile-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "attachfile-cmd", "score": 0.8973590434087177}, {"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "attachfile-cmd", "score": 0.27111130260612365}, {"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "attachfile-cmd", "score": 0.0038703587462843594}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}, {"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "attachfile-cmd", "score": 0.03741172773691362}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "attachfile-cmd", "score": 0.0004995635515943437}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "attachfile-cmd", "score": 7.847906405228455}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "attachfile-cmd", "score": 0.0174633138331273}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "attachfile-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "attachfile-cmd", "score": 0.006776001543888959}, {"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "attachfile-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "attachfile-cmd", "score": 6.006262128895586e-05}, {"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "attachfile-cmd", "score": 0.00017906650306643613}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "attachfile-cmd", "score": 0.20852115286477566}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "attachfile-cmd", "score": 1.4380093454211778}, {"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "attachfile-cmd", "score": 0.002233258780143355}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "attachfile-cmd", "score": 0.002233258780143355}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "attachfile-cmd", "score": 0.047007158741781095}, {"caption": "\\MP", "snippet": "\\MP", "meta": "attachfile-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "attachfile-cmd", "score": 0.00018344383742255004}, {"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "attachfile-cmd", "score": 0.0005446476945175932}, {"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "attachfile-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "attachfile-cmd", "score": 0.0018503938529945614}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "attachfile-cmd", "score": 0.07503475348393239}, {"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "attachfile-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "attachfile-cmd", "score": 0.0012546605780895737}, {"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "attachfile-cmd", "score": 0.004515152477030062}, {"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "attachfile-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "attachfile-cmd", "score": 0.02445837629741638}, {"caption": "\\newline", "snippet": "\\newline", "meta": "attachfile-cmd", "score": 0.3311721696201715}, {"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "attachfile-cmd", "score": 0.06967310843464661}, {"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "attachfile-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "attachfile-cmd", "score": 0.0012064581899162352}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "attachfile-cmd", "score": 0.9202908262245683}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "attachfile-cmd", "score": 0.00926923425734719}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "attachfile-cmd", "score": 0.20852115286477566}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "attachfile-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "attachfile-cmd", "score": 0.0008147200475678891}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "attachfile-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "attachfile-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "attachfile-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "attachfile-cmd", "score": 0.2864294797053033}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "attachfile-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "attachfile-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "attachfile-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "attachfile-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "attachfile-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "attachfile-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "attachfile-cmd", "score": 0.028955796305270766}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "attachfile-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "attachfile-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "attachfile-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "attachfile-cmd", "score": 0.002958865219480927}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "attachfile-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "attachfile-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "attachfile-cmd", "score": 0.00530510025314411}], "doc": [{"caption": "\\do", "snippet": "\\do", "meta": "doc-cmd", "score": 0.009278344180101056}, {"caption": "\\verb", "snippet": "\\verb", "meta": "doc-cmd", "score": 0.1323269725886312}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "doc-cmd", "score": 0.7504160124360846}, {"caption": "\\verbatim", "snippet": "\\verbatim", "meta": "doc-cmd", "score": 0.0072203369120285256}], "tkz-fct": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-fct-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "tkz-fct-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "tkz-fct-cmd", "score": 0.00031058155311734754}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tkz-fct-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tkz-fct-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tkz-fct-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-fct-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tkz-fct-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-fct-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tkz-fct-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-fct-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tkz-fct-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tkz-fct-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-fct-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tkz-fct-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-fct-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tkz-fct-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-fct-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tkz-fct-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tkz-fct-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tkz-fct-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tkz-fct-cmd", "score": 0.2864294797053033}], "notes2bib": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "notes2bib-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "notes2bib-cmd", "score": 0.2864294797053033}], "stackengine": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "stackengine-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "stackengine-cmd", "score": 0.021170869458413965}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "stackengine-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "stackengine-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "stackengine-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "stackengine-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "stackengine-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "stackengine-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "stackengine-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "stackengine-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "stackengine-cmd", "score": 0.028955796305270766}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "stackengine-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "stackengine-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "stackengine-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "stackengine-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "stackengine-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "stackengine-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "stackengine-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "stackengine-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "stackengine-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "stackengine-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "stackengine-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "stackengine-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "stackengine-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "stackengine-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "stackengine-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "stackengine-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "stackengine-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "stackengine-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "stackengine-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "stackengine-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "stackengine-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "stackengine-cmd", "score": 0.008565354665444157}], "cellspace": [{"caption": "\\endtabular", "snippet": "\\endtabular", "meta": "cellspace-cmd", "score": 0.0005078239917067089}, {"caption": "\\multicolumn{}{}{}", "snippet": "\\multicolumn{$1}{$2}{$3}", "meta": "cellspace-cmd", "score": 0.5473606021405326}, {"caption": "\\array{}", "snippet": "\\array{$1}", "meta": "cellspace-cmd", "score": 2.650484574842396e-05}, {"caption": "\\arraybackslash", "snippet": "\\arraybackslash", "meta": "cellspace-cmd", "score": 0.014532521139459619}, {"caption": "\\tabular{}", "snippet": "\\tabular{$1}", "meta": "cellspace-cmd", "score": 0.0005078239917067089}, {"caption": "\\csname", "snippet": "\\csname", "meta": "cellspace-cmd", "score": 0.008565354665444157}, {"caption": "\\newcolumntype{}[]{}", "snippet": "\\newcolumntype{$1}[$2]{$3}", "meta": "cellspace-cmd", "score": 0.018615449342361392}, {"caption": "\\newcolumntype{}{}", "snippet": "\\newcolumntype{$1}{$2}", "meta": "cellspace-cmd", "score": 0.018615449342361392}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "cellspace-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "cellspace-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "cellspace-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "cellspace-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "cellspace-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "cellspace-cmd", "score": 0.0018957469739775527}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "cellspace-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "cellspace-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "cellspace-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "cellspace-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "cellspace-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "cellspace-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "cellspace-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "cellspace-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "cellspace-cmd", "score": 0.028955796305270766}], "zxjatype": [{"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "zxjatype-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "zxjatype-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "zxjatype-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "zxjatype-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "zxjatype-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "zxjatype-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "zxjatype-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "zxjatype-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "zxjatype-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "zxjatype-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "zxjatype-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "zxjatype-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "zxjatype-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "zxjatype-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "zxjatype-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "zxjatype-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zxjatype-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "zxjatype-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "zxjatype-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "zxjatype-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "zxjatype-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zxjatype-cmd", "score": 0.008565354665444157}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "zxjatype-cmd", "score": 0.00021116765384691477}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "zxjatype-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "zxjatype-cmd", "score": 0.2864294797053033}], "newclude": [{"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "newclude-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "newclude-cmd", "score": 1.4425339817971206}, {"caption": "\\include{}", "snippet": "\\include{$1}", "meta": "newclude-cmd", "score": 0.1547080054979312}], "pgf-umlcd": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlcd-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-umlcd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-umlcd-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgf-umlcd-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgf-umlcd-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgf-umlcd-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-umlcd-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgf-umlcd-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlcd-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgf-umlcd-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgf-umlcd-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgf-umlcd-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgf-umlcd-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgf-umlcd-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgf-umlcd-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgf-umlcd-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgf-umlcd-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgf-umlcd-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgf-umlcd-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgf-umlcd-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgf-umlcd-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgf-umlcd-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgf-umlcd-cmd", "score": 0.2864294797053033}], "thm-listof": [{"caption": "\\listtheoremname", "snippet": "\\listtheoremname", "meta": "thm-listof-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\thmtformatoptarg", "snippet": "\\thmtformatoptarg", "meta": "thm-listof-cmd", "score": 6.353668036093916e-05}, {"caption": "\\listoftheorems[]", "snippet": "\\listoftheorems[$1]", "meta": "thm-listof-cmd", "score": 1.9443373798666845e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thm-listof-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "thm-listof-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "thm-listof-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "thm-listof-cmd", "score": 0.008565354665444157}, {"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thm-listof-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thm-listof-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thm-listof-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thm-listof-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thm-listof-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thm-listof-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thm-listof-cmd", "score": 0.0006133100544751855}], "thm-autoref": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thm-autoref-cmd", "score": 0.00037306820619479756}, {"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thm-autoref-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thm-autoref-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thm-autoref-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thm-autoref-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thm-autoref-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thm-autoref-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thm-autoref-cmd", "score": 0.0006133100544751855}], "thm-patch": [{"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thm-patch-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thm-patch-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thm-patch-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thm-patch-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thm-patch-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thm-patch-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thm-patch-cmd", "score": 0.0006133100544751855}], "thm-kv": [{"caption": "\\declaretheoremstyle[]{}", "snippet": "\\declaretheoremstyle[$1]{$2}", "meta": "thm-kv-cmd", "score": 0.0001168034231635369}, {"caption": "\\declaretheorem[]{}", "snippet": "\\declaretheorem[$1]{$2}", "meta": "thm-kv-cmd", "score": 0.0004904790216915127}, {"caption": "\\theoremstyle{}", "snippet": "\\theoremstyle{$1}", "meta": "thm-kv-cmd", "score": 0.02533412165007986}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thm-kv-cmd", "score": 0.00037306820619479756}, {"caption": "\\proof{}", "snippet": "\\proof{$1}", "meta": "thm-kv-cmd", "score": 0.000701497773639073}, {"caption": "\\proof", "snippet": "\\proof", "meta": "thm-kv-cmd", "score": 0.000701497773639073}, {"caption": "\\newtheorem{}[]{}", "snippet": "\\newtheorem{$1}[$2]{$3}", "meta": "thm-kv-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}", "snippet": "\\newtheorem{$1}{$2}", "meta": "thm-kv-cmd", "score": 0.215689795055434}, {"caption": "\\newtheorem{}{}[]", "snippet": "\\newtheorem{$1}{$2}[$3]", "meta": "thm-kv-cmd", "score": 0.215689795055434}, {"caption": "\\endproof", "snippet": "\\endproof", "meta": "thm-kv-cmd", "score": 0.0006133100544751855}, {"caption": "\\endproof{}", "snippet": "\\endproof{$1}", "meta": "thm-kv-cmd", "score": 0.0006133100544751855}, {"caption": "\\empty", "snippet": "\\empty", "meta": "thm-kv-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "thm-kv-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "thm-kv-cmd", "score": 0.008565354665444157}], "onlyamsmath": [{"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "onlyamsmath-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "onlyamsmath-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "onlyamsmath-cmd", "score": 0.18137737738638837}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "onlyamsmath-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "onlyamsmath-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "onlyamsmath-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "onlyamsmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "onlyamsmath-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "onlyamsmath-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "onlyamsmath-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "onlyamsmath-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "onlyamsmath-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "onlyamsmath-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "onlyamsmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "onlyamsmath-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "onlyamsmath-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "onlyamsmath-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "onlyamsmath-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "onlyamsmath-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "onlyamsmath-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "onlyamsmath-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "onlyamsmath-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "onlyamsmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "onlyamsmath-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "onlyamsmath-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "onlyamsmath-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "onlyamsmath-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "onlyamsmath-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "onlyamsmath-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "onlyamsmath-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "onlyamsmath-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "onlyamsmath-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "onlyamsmath-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "onlyamsmath-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "onlyamsmath-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "onlyamsmath-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "onlyamsmath-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "onlyamsmath-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "onlyamsmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "onlyamsmath-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "onlyamsmath-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "onlyamsmath-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "onlyamsmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "onlyamsmath-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "onlyamsmath-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "onlyamsmath-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "onlyamsmath-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "onlyamsmath-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "onlyamsmath-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "onlyamsmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "onlyamsmath-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "onlyamsmath-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "onlyamsmath-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "onlyamsmath-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "onlyamsmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "onlyamsmath-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "onlyamsmath-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "onlyamsmath-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "onlyamsmath-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "onlyamsmath-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "onlyamsmath-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "onlyamsmath-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "onlyamsmath-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "onlyamsmath-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "onlyamsmath-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "onlyamsmath-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "onlyamsmath-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "onlyamsmath-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "onlyamsmath-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "onlyamsmath-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "onlyamsmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "onlyamsmath-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "onlyamsmath-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "onlyamsmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "onlyamsmath-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "onlyamsmath-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "onlyamsmath-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "onlyamsmath-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "onlyamsmath-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "onlyamsmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "onlyamsmath-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "onlyamsmath-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "onlyamsmath-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "onlyamsmath-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "onlyamsmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "onlyamsmath-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "onlyamsmath-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "onlyamsmath-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "onlyamsmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "onlyamsmath-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "onlyamsmath-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "onlyamsmath-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "onlyamsmath-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "onlyamsmath-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "onlyamsmath-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "onlyamsmath-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "onlyamsmath-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "onlyamsmath-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "onlyamsmath-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "onlyamsmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "onlyamsmath-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "onlyamsmath-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "onlyamsmath-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "onlyamsmath-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "onlyamsmath-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "onlyamsmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "onlyamsmath-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "onlyamsmath-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "onlyamsmath-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "onlyamsmath-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "onlyamsmath-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "onlyamsmath-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "onlyamsmath-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "onlyamsmath-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "onlyamsmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "onlyamsmath-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "onlyamsmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "onlyamsmath-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "onlyamsmath-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "onlyamsmath-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "onlyamsmath-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "onlyamsmath-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "onlyamsmath-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "onlyamsmath-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "onlyamsmath-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "onlyamsmath-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "onlyamsmath-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "onlyamsmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "onlyamsmath-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "onlyamsmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "onlyamsmath-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "onlyamsmath-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "onlyamsmath-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "onlyamsmath-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "onlyamsmath-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "onlyamsmath-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "onlyamsmath-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "onlyamsmath-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "onlyamsmath-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "onlyamsmath-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "onlyamsmath-cmd", "score": 0.0063276692758974925}], "arsclassica": [{"caption": "\\spacedlowsmallcaps{}", "snippet": "\\spacedlowsmallcaps{$1}", "meta": "arsclassica-cmd", "score": 0.002677188251799468}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "arsclassica-cmd", "score": 0.005008938879210868}, {"caption": "\\spacedallcaps{}", "snippet": "\\spacedallcaps{$1}", "meta": "arsclassica-cmd", "score": 0.0015281000475958944}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "arsclassica-cmd", "score": 0.3277033727934986}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "arsclassica-cmd", "score": 0.1789117552185788}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.00037306820619479756}, {"caption": "\\specialrule{}{}{}", "snippet": "\\specialrule{$1}{$2}{$3}", "meta": "arsclassica-cmd", "score": 0.004974385202605165}, {"caption": "\\cmidrule", "snippet": "\\cmidrule", "meta": "arsclassica-cmd", "score": 0.01894952272365088}, {"caption": "\\cmidrule{}", "snippet": "\\cmidrule{$1}", "meta": "arsclassica-cmd", "score": 0.01894952272365088}, {"caption": "\\bottomrule", "snippet": "\\bottomrule", "meta": "arsclassica-cmd", "score": 0.04533364657852219}, {"caption": "\\midrule", "snippet": "\\midrule", "meta": "arsclassica-cmd", "score": 0.07098077735912875}, {"caption": "\\addlinespace", "snippet": "\\addlinespace", "meta": "arsclassica-cmd", "score": 0.005865460617491447}, {"caption": "\\addlinespace[]", "snippet": "\\addlinespace[$1]", "meta": "arsclassica-cmd", "score": 0.005865460617491447}, {"caption": "\\toprule", "snippet": "\\toprule", "meta": "arsclassica-cmd", "score": 0.059857788139528495}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "arsclassica-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "arsclassica-cmd", "score": 0.02900783226643065}, {"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.018348594199161503}, {"caption": "\\string", "snippet": "\\string", "meta": "arsclassica-cmd", "score": 0.001042697111754002}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "arsclassica-cmd", "score": 0.047007158741781095}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "arsclassica-cmd", "score": 0.00530510025314411}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "arsclassica-cmd", "score": 0.0030745841706804776}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "arsclassica-cmd", "score": 0.422097569591803}, {"caption": "\\csname", "snippet": "\\csname", "meta": "arsclassica-cmd", "score": 0.008565354665444157}, {"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "arsclassica-cmd", "score": 0.3147206476372336}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "arsclassica-cmd", "score": 1.2569477427490174}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "arsclassica-cmd", "score": 1.897791904799601}, {"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "arsclassica-cmd", "score": 5.806935368083486e-05}, {"caption": "\\noindent", "snippet": "\\noindent", "meta": "arsclassica-cmd", "score": 0.42355747798114207}, {"caption": "\\titleclass{}{}[]", "snippet": "\\titleclass{$1}{$2}[$3]", "meta": "arsclassica-cmd", "score": 0.00028979763314974667}, {"caption": "\\titlelabel{}", "snippet": "\\titlelabel{$1}", "meta": "arsclassica-cmd", "score": 6.40387839367932e-06}, {"caption": "\\thetitle", "snippet": "\\thetitle", "meta": "arsclassica-cmd", "score": 0.0015531478302713473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\titleformat{}{}{}{}{}[]", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}[$6]", "meta": "arsclassica-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}[]{}{}{}{}", "snippet": "\\titleformat{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "arsclassica-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}", "snippet": "\\titleformat{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.03475519439740096}, {"caption": "\\titleformat{}{}{}{}{}", "snippet": "\\titleformat{$1}{$2}{$3}{$4}{$5}", "meta": "arsclassica-cmd", "score": 0.03475519439740096}, {"caption": "\\titlespacing{}{}{}{}", "snippet": "\\titlespacing{$1}{$2}{$3}{$4}", "meta": "arsclassica-cmd", "score": 0.023062744385192156}, {"caption": "\\markboth{}{}", "snippet": "\\markboth{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.038323601301945065}, {"caption": "\\markboth{}", "snippet": "\\markboth{$1}", "meta": "arsclassica-cmd", "score": 0.038323601301945065}, {"caption": "\\markright{}", "snippet": "\\markright{$1}", "meta": "arsclassica-cmd", "score": 0.007138622674767024}, {"caption": "\\markright{}{}", "snippet": "\\markright{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.007138622674767024}, {"caption": "\\filleft", "snippet": "\\filleft", "meta": "arsclassica-cmd", "score": 7.959989906732799e-05}, {"caption": "\\filcenter", "snippet": "\\filcenter", "meta": "arsclassica-cmd", "score": 0.0004835660211260246}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "arsclassica-cmd", "score": 0.2253056071787701}, {"caption": "\\cleardoublepage", "snippet": "\\cleardoublepage", "meta": "arsclassica-cmd", "score": 0.044016804142963585}, {"caption": "\\csname", "snippet": "\\csname", "meta": "arsclassica-cmd", "score": 0.008565354665444157}, {"caption": "\\chaptertitlename", "snippet": "\\chaptertitlename", "meta": "arsclassica-cmd", "score": 0.0016985007766926272}, {"caption": "\\newpage", "snippet": "\\newpage", "meta": "arsclassica-cmd", "score": 0.3277033727934986}, {"caption": "\\filright", "snippet": "\\filright", "meta": "arsclassica-cmd", "score": 7.959989906732799e-05}, {"caption": "\\titlerule", "snippet": "\\titlerule", "meta": "arsclassica-cmd", "score": 0.019273712561461216}, {"caption": "\\titlerule[]{}", "snippet": "\\titlerule[$1]{$2}", "meta": "arsclassica-cmd", "score": 0.019273712561461216}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "arsclassica-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "arsclassica-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "arsclassica-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "arsclassica-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "arsclassica-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "arsclassica-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "arsclassica-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "arsclassica-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "arsclassica-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "arsclassica-cmd", "score": 0.021473212893597875}, {"caption": "\\marginpar{}", "snippet": "\\marginpar{$1}", "meta": "arsclassica-cmd", "score": 0.003400158497921723}, {"caption": "\\marginpar", "snippet": "\\marginpar", "meta": "arsclassica-cmd", "score": 0.003400158497921723}, {"caption": "\\cftsecleader", "snippet": "\\cftsecleader", "meta": "arsclassica-cmd", "score": 0.0011340882025681251}, {"caption": "\\cftsubsecleader", "snippet": "\\cftsubsecleader", "meta": "arsclassica-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\spacedlowsmallcaps{}", "snippet": "\\spacedlowsmallcaps{$1}", "meta": "arsclassica-cmd", "score": 0.002677188251799468}, {"caption": "\\sectionmark", "snippet": "\\sectionmark", "meta": "arsclassica-cmd", "score": 0.005008938879210868}, {"caption": "\\chaptermark", "snippet": "\\chaptermark", "meta": "arsclassica-cmd", "score": 0.005924520024686584}, {"caption": "\\chaptermark{}", "snippet": "\\chaptermark{$1}", "meta": "arsclassica-cmd", "score": 0.005924520024686584}, {"caption": "\\part{}", "snippet": "\\part{$1}", "meta": "arsclassica-cmd", "score": 0.022180129487444723}, {"caption": "\\tocEntry{}", "snippet": "\\tocEntry{$1}", "meta": "arsclassica-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\graffito{}", "snippet": "\\graffito{$1}", "meta": "arsclassica-cmd", "score": 1.1006799670632527e-05}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "arsclassica-cmd", "score": 0.422097569591803}, {"caption": "\\spacedallcaps{}", "snippet": "\\spacedallcaps{$1}", "meta": "arsclassica-cmd", "score": 0.0015281000475958944}, {"caption": "\\cftchapleader", "snippet": "\\cftchapleader", "meta": "arsclassica-cmd", "score": 1.0644172549700836e-05}, {"caption": "\\myVersion", "snippet": "\\myVersion", "meta": "arsclassica-cmd", "score": 0.00018029288638573757}, {"caption": "\\ctparttext{}", "snippet": "\\ctparttext{$1}", "meta": "arsclassica-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\addtokomafont{}{}", "snippet": "\\addtokomafont{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.0008555564394100388}, {"caption": "\\setkomafont{}{}", "snippet": "\\setkomafont{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.012985816912639263}, {"caption": "\\KOMAoptions{}", "snippet": "\\KOMAoptions{$1}", "meta": "arsclassica-cmd", "score": 0.000396664302361659}, {"caption": "\\cite{}", "snippet": "\\cite{$1}", "meta": "arsclassica-cmd", "score": 2.341195220791228}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "arsclassica-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "arsclassica-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "arsclassica-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "arsclassica-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "arsclassica-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "arsclassica-cmd", "score": 0.0018957469739775527}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "arsclassica-cmd", "score": 0.021170869458413965}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "arsclassica-cmd", "score": 0.00530510025314411}, {"caption": "\\lsstyle", "snippet": "\\lsstyle", "meta": "arsclassica-cmd", "score": 0.0023367519914345774}, {"caption": "\\space", "snippet": "\\space", "meta": "arsclassica-cmd", "score": 0.023010789853665694}, {"caption": "\\DisableLigatures[]{}", "snippet": "\\DisableLigatures[$1]{$2}", "meta": "arsclassica-cmd", "score": 0.0009805246614299932}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "arsclassica-cmd", "score": 0.00021116765384691477}], "blkarray": [{"caption": "\\small", "snippet": "\\small", "meta": "blkarray-cmd", "score": 0.2447632045426295}, {"caption": "\\small{}", "snippet": "\\small{$1}", "meta": "blkarray-cmd", "score": 0.2447632045426295}], "tkz-tab": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-tab-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-tab-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "tkz-tab-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "tkz-tab-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "tkz-tab-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-tab-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "tkz-tab-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-tab-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "tkz-tab-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "tkz-tab-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "tkz-tab-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "tkz-tab-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "tkz-tab-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "tkz-tab-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "tkz-tab-cmd", "score": 0.004719094298848707}, {"caption": "\\reserveinserts{}", "snippet": "\\reserveinserts{$1}", "meta": "tkz-tab-cmd", "score": 0.0018653410309739879}, {"caption": "\\newtoks", "snippet": "\\newtoks", "meta": "tkz-tab-cmd", "score": 0.00031058155311734754}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-tab-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "tkz-tab-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tkz-tab-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tkz-tab-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "tkz-tab-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tkz-tab-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "tkz-tab-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tkz-tab-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "tkz-tab-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "tkz-tab-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "tkz-tab-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "tkz-tab-cmd", "score": 0.2864294797053033}], "todo": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "todo-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "todo-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "todo-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "todo-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "todo-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "todo-cmd", "score": 0.0006671850995492977}], "lcg": [{"caption": "\\rand", "snippet": "\\rand", "meta": "lcg-cmd", "score": 6.2350576842596716e-06}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "lcg-cmd", "score": 0.00037306820619479756}], "kantlipsum": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "kantlipsum-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "kantlipsum-cmd", "score": 0.2864294797053033}], "chappg": [{"caption": "\\pagenumbering{}", "snippet": "\\pagenumbering{$1}", "meta": "chappg-cmd", "score": 0.06731737633021802}], "chessboard": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "chessboard-cmd", "score": 0.00037306820619479756}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "chessboard-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "chessboard-cmd", "score": 0.009331077109224957}, {"caption": "\\setboardfontencoding{}", "snippet": "\\setboardfontencoding{$1}", "meta": "chessboard-cmd", "score": 0.00014668111964632249}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chessboard-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chessboard-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chessboard-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chessboard-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chessboard-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chessboard-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chessboard-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chessboard-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chessboard-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "chessboard-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "chessboard-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "chessboard-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "chessboard-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chessboard-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "chessboard-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "chessboard-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chessboard-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "chessboard-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chessboard-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chessboard-cmd", "score": 0.2864294797053033}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "chessboard-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "chessboard-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "chessboard-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chessboard-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "chessboard-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "chessboard-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "chessboard-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "chessboard-cmd", "score": 0.028955796305270766}, {"caption": "\\green", "snippet": "\\green", "meta": "chessboard-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "chessboard-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "chessboard-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "chessboard-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "chessboard-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "chessboard-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "chessboard-cmd", "score": 0.006520475264573554}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "chessboard-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "chessboard-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "chessboard-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "chessboard-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "chessboard-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "chessboard-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chessboard-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chessboard-cmd", "score": 0.008565354665444157}], "xskak": [{"caption": "\\mainline{}", "snippet": "\\mainline{$1}", "meta": "xskak-cmd", "score": 0.0010267678375242572}, {"caption": "\\newchessgame", "snippet": "\\newchessgame", "meta": "xskak-cmd", "score": 0.000880086717877935}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "xskak-cmd", "score": 0.00037306820619479756}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "xskak-cmd", "score": 0.01590723355124104}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "xskak-cmd", "score": 0.009331077109224957}, {"caption": "\\setboardfontencoding{}", "snippet": "\\setboardfontencoding{$1}", "meta": "xskak-cmd", "score": 0.00014668111964632249}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "xskak-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "xskak-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "xskak-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "xskak-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xskak-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "xskak-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xskak-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "xskak-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "xskak-cmd", "score": 0.004649150613625593}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "xskak-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "xskak-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "xskak-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "xskak-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xskak-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "xskak-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "xskak-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xskak-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "xskak-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xskak-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xskak-cmd", "score": 0.2864294797053033}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "xskak-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "xskak-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "xskak-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xskak-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "xskak-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "xskak-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "xskak-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "xskak-cmd", "score": 0.028955796305270766}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "xskak-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "xskak-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "xskak-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "xskak-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "xskak-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "xskak-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xskak-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "xskak-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "xskak-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "xskak-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "xskak-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "xskak-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "xskak-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "xskak-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "xskak-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "xskak-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "xskak-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "xskak-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "xskak-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "xskak-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xskak-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "xskak-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "xskak-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "xskak-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "xskak-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xskak-cmd", "score": 0.008565354665444157}, {"caption": "\\green", "snippet": "\\green", "meta": "xskak-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "xskak-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "xskak-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "xskak-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "xskak-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "xskak-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "xskak-cmd", "score": 0.006520475264573554}], "pgfheaps": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfheaps-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfheaps-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfheaps-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfheaps-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfheaps-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfheaps-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfheaps-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfheaps-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfheaps-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfheaps-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfheaps-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfheaps-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfheaps-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfheaps-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfheaps-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfheaps-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfheaps-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfheaps-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfheaps-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfheaps-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfheaps-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfheaps-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfheaps-cmd", "score": 0.2864294797053033}], "pgfshade": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfshade-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfshade-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "pgfshade-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "pgfshade-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "pgfshade-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfshade-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "pgfshade-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfshade-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "pgfshade-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "pgfshade-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "pgfshade-cmd", "score": 0.004719094298848707}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfshade-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "pgfshade-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pgfshade-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pgfshade-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "pgfshade-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pgfshade-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "pgfshade-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pgfshade-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "pgfshade-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "pgfshade-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "pgfshade-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "pgfshade-cmd", "score": 0.2864294797053033}], "showframe": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "showframe-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "showframe-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "showframe-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "showframe-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "showframe-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "showframe-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "showframe-cmd", "score": 0.008565354665444157}, {"caption": "\\AddToShipoutPictureFG{}", "snippet": "\\AddToShipoutPictureFG{$1}", "meta": "showframe-cmd", "score": 0.000325977535138643}, {"caption": "\\AddToShipoutPictureBG{}", "snippet": "\\AddToShipoutPictureBG{$1}", "meta": "showframe-cmd", "score": 0.0008957666085644653}, {"caption": "\\AtPageUpperLeft{}", "snippet": "\\AtPageUpperLeft{$1}", "meta": "showframe-cmd", "score": 0.0003608141410278152}, {"caption": "\\LenToUnit{}", "snippet": "\\LenToUnit{$1}", "meta": "showframe-cmd", "score": 0.0007216282820556304}, {"caption": "\\AddToShipoutPicture{}", "snippet": "\\AddToShipoutPicture{$1}", "meta": "showframe-cmd", "score": 0.0017658629469099734}], "psvectorian": [{"caption": "\\csname", "snippet": "\\csname", "meta": "psvectorian-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "psvectorian-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "psvectorian-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "psvectorian-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "psvectorian-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "psvectorian-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "psvectorian-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "psvectorian-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "psvectorian-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "psvectorian-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "psvectorian-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "psvectorian-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "psvectorian-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "psvectorian-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "psvectorian-cmd", "score": 0.004719094298848707}, {"caption": "\\green", "snippet": "\\green", "meta": "psvectorian-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "psvectorian-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "psvectorian-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "psvectorian-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "psvectorian-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "psvectorian-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "psvectorian-cmd", "score": 0.006520475264573554}], "pst-grad": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-grad-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-grad-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-grad-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-grad-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-grad-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-grad-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-grad-cmd", "score": 0.006520475264573554}], "cool": [{"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "cool-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "cool-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "cool-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "cool-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "cool-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "cool-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "cool-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "cool-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "cool-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "cool-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "cool-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "cool-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "cool-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "cool-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "cool-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "cool-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "cool-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "cool-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "cool-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "cool-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "cool-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "cool-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "cool-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "cool-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "cool-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "cool-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "cool-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "cool-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "cool-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "cool-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "cool-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "cool-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "cool-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "cool-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "cool-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "cool-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "cool-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "cool-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "cool-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "cool-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "cool-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "cool-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "cool-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "cool-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "cool-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "cool-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "cool-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "cool-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "cool-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "cool-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "cool-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "cool-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "cool-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "cool-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "cool-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "cool-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "cool-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "cool-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "cool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "cool-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "cool-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "cool-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "cool-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "cool-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "cool-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "cool-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "cool-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "cool-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "cool-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "cool-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "cool-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "cool-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "cool-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "cool-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "cool-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "cool-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "cool-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "cool-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "cool-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "cool-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "cool-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "cool-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "cool-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "cool-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "cool-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "cool-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "cool-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "cool-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "cool-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "cool-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "cool-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "cool-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "cool-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "cool-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "cool-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "cool-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "cool-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "cool-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "cool-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "cool-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "cool-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "cool-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "cool-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "cool-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "cool-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "cool-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "cool-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "cool-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "cool-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "cool-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "cool-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "cool-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "cool-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "cool-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "cool-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "cool-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "cool-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "cool-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "cool-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "cool-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "cool-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "cool-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "cool-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "cool-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "cool-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "cool-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "cool-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "cool-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "cool-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "cool-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "cool-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "cool-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "cool-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "cool-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "cool-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "cool-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "cool-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "cool-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "cool-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "cool-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "cool-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "cool-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "cool-cmd", "score": 0.0004286136584068833}, {"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "cool-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "cool-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "cool-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "cool-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "cool-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "cool-cmd", "score": 0.0006671850995492977}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "cool-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "cool-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "cool-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "cool-cmd", "score": 0.008565354665444157}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "cool-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "cool-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "cool-cmd", "score": 0.18137737738638837}, {"caption": "\\forloop{}{}{}{}", "snippet": "\\forloop{$1}{$2}{$3}{$4}", "meta": "cool-cmd", "score": 0.00029867998381154486}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "cool-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "cool-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "cool-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "cool-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "cool-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "cool-cmd", "score": 0.0018957469739775527}, {"caption": "\\do", "snippet": "\\do", "meta": "cool-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "cool-cmd", "score": 0.0063276692758974925}], "xassoccnt": [{"caption": "\\NewTotalDocumentCounter{}", "snippet": "\\NewTotalDocumentCounter{$1}", "meta": "xassoccnt-cmd", "score": 1.5075186740106946e-05}, {"caption": "\\DeclareAssociatedCounters{}{}", "snippet": "\\DeclareAssociatedCounters{$1}{$2}", "meta": "xassoccnt-cmd", "score": 1.5075186740106946e-05}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xassoccnt-cmd", "score": 0.008565354665444157}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "xassoccnt-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "xassoccnt-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "xassoccnt-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "xassoccnt-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "xassoccnt-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "xassoccnt-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "xassoccnt-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "xassoccnt-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "xassoccnt-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "xassoccnt-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "xassoccnt-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xassoccnt-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "xassoccnt-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "xassoccnt-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "xassoccnt-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xassoccnt-cmd", "score": 0.008565354665444157}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xassoccnt-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xassoccnt-cmd", "score": 0.2864294797053033}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "xassoccnt-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xassoccnt-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xassoccnt-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "xassoccnt-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "xassoccnt-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "xassoccnt-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "xassoccnt-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "xassoccnt-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "xassoccnt-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "xassoccnt-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "xassoccnt-cmd", "score": 0.2864294797053033}], "chemscheme": [{"caption": "\\csname", "snippet": "\\csname", "meta": "chemscheme-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "chemscheme-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemscheme-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemscheme-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemscheme-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemscheme-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chemscheme-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chemscheme-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chemscheme-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chemscheme-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chemscheme-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemscheme-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chemscheme-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemscheme-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chemscheme-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chemscheme-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chemscheme-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chemscheme-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chemscheme-cmd", "score": 0.004649150613625593}, {"caption": "\\empty", "snippet": "\\empty", "meta": "chemscheme-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chemscheme-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemscheme-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chemscheme-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "chemscheme-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chemscheme-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chemscheme-cmd", "score": 0.021170869458413965}], "pst-all": [{"caption": "\\green", "snippet": "\\green", "meta": "pst-all-cmd", "score": 0.0016005722621532548}, {"caption": "\\green{}", "snippet": "\\green{$1}", "meta": "pst-all-cmd", "score": 0.0016005722621532548}, {"caption": "\\documentclass[]{}", "snippet": "\\documentclass[$1]{$2}", "meta": "pst-all-cmd", "score": 1.4425339817971206}, {"caption": "\\documentclass{}", "snippet": "\\documentclass{$1}", "meta": "pst-all-cmd", "score": 1.4425339817971206}, {"caption": "\\gray", "snippet": "\\gray", "meta": "pst-all-cmd", "score": 0.0005786730478266738}, {"caption": "\\red{}", "snippet": "\\red{$1}", "meta": "pst-all-cmd", "score": 0.006520475264573554}, {"caption": "\\red", "snippet": "\\red", "meta": "pst-all-cmd", "score": 0.006520475264573554}], "regexpatch": [{"caption": "\\xpatchcmd{}{}{}{}{}", "snippet": "\\xpatchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "regexpatch-cmd", "score": 0.0019344877752147675}, {"caption": "\\xpatchcmd", "snippet": "\\xpatchcmd", "meta": "regexpatch-cmd", "score": 0.0019344877752147675}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "regexpatch-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "regexpatch-cmd", "score": 0.2864294797053033}], "chronosys": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "chronosys-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronosys-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chronosys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chronosys-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chronosys-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chronosys-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chronosys-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chronosys-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chronosys-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chronosys-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chronosys-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronosys-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chronosys-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chronosys-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chronosys-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "chronosys-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chronosys-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chronosys-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "chronosys-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "chronosys-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "chronosys-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "chronosys-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "chronosys-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chronosys-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "chronosys-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "chronosys-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronosys-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "chronosys-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "chronosys-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chronosys-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chronosys-cmd", "score": 0.2864294797053033}], "newfloat": [{"caption": "\\DeclareFloatingEnvironment[]{}", "snippet": "\\DeclareFloatingEnvironment[$1]{$2}", "meta": "newfloat-cmd", "score": 2.603029874713569e-05}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "newfloat-cmd", "score": 0.00037306820619479756}], "zref": [{"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "zref-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "zref-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "zref-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "zref-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "zref-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "zref-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "zref-cmd", "score": 0.002958865219480927}], "bmpsize": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "bmpsize-cmd", "score": 0.00037306820619479756}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bmpsize-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bmpsize-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "bmpsize-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "bmpsize-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "bmpsize-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "bmpsize-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "bmpsize-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bmpsize-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "bmpsize-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bmpsize-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "bmpsize-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "bmpsize-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "bmpsize-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "bmpsize-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "bmpsize-cmd", "score": 0.004649150613625593}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bmpsize-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bmpsize-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "bmpsize-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "bmpsize-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "bmpsize-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bmpsize-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bmpsize-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bmpsize-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bmpsize-cmd", "score": 0.021170869458413965}], "steinmetz": [{"caption": "\\Line", "snippet": "\\Line", "meta": "steinmetz-cmd", "score": 0.0006078790177929149}, {"caption": "\\polygon", "snippet": "\\polygon", "meta": "steinmetz-cmd", "score": 0.0008987552240147395}, {"caption": "\\line", "snippet": "\\line", "meta": "steinmetz-cmd", "score": 0.014519741542622297}, {"caption": "\\polyline", "snippet": "\\polyline", "meta": "steinmetz-cmd", "score": 0.00022468880600368487}, {"caption": "\\vector", "snippet": "\\vector", "meta": "steinmetz-cmd", "score": 0.002970308722584179}], "pageslts": [{"caption": "\\thepage", "snippet": "\\thepage", "meta": "pageslts-cmd", "score": 0.0591555998103519}, {"caption": "\\pagenumbering{}", "snippet": "\\pagenumbering{$1}", "meta": "pageslts-cmd", "score": 0.06731737633021802}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "pageslts-cmd", "score": 0.1789117552185788}, {"caption": "\\global", "snippet": "\\global", "meta": "pageslts-cmd", "score": 0.006609629561859019}, {"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "pageslts-cmd", "score": 0.010304996748556729}, {"caption": "\\index{}", "snippet": "\\index{$1}", "meta": "pageslts-cmd", "score": 0.013774721817648336}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pageslts-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "pageslts-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "pageslts-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pageslts-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pageslts-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pageslts-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pageslts-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pageslts-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pageslts-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pageslts-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pageslts-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pageslts-cmd", "score": 0.008565354665444157}], "chronology": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "chronology-cmd", "score": 0.00037306820619479756}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "chronology-cmd", "score": 0.010241823778997489}, {"caption": "\\setlength{}{}", "snippet": "\\setlength{$1}{$2}", "meta": "chronology-cmd", "score": 0.354445763583904}, {"caption": "\\setlength", "snippet": "\\setlength", "meta": "chronology-cmd", "score": 0.354445763583904}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "chronology-cmd", "score": 0.0030745841706804776}, {"caption": "\\setcounter{}{}", "snippet": "\\setcounter{$1}{$2}", "meta": "chronology-cmd", "score": 0.10068045662118841}, {"caption": "\\addtolength{}{}", "snippet": "\\addtolength{$1}{$2}", "meta": "chronology-cmd", "score": 0.028955796305270766}, {"caption": "\\addtolength", "snippet": "\\addtolength", "meta": "chronology-cmd", "score": 0.028955796305270766}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronology-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "chronology-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "chronology-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "chronology-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "chronology-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "chronology-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chronology-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "chronology-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronology-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "chronology-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "chronology-cmd", "score": 0.004649150613625593}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "chronology-cmd", "score": 0.004719094298848707}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chronology-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chronology-cmd", "score": 0.2864294797053033}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "chronology-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "chronology-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "chronology-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "chronology-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "chronology-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "chronology-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "chronology-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "chronology-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "chronology-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "chronology-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "chronology-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "chronology-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "chronology-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "chronology-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "chronology-cmd", "score": 0.2864294797053033}], "spreadtab": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "spreadtab-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "spreadtab-cmd", "score": 0.021170869458413965}], "algpascal": [{"caption": "\\algrenewcommand", "snippet": "\\algrenewcommand", "meta": "algpascal-cmd", "score": 0.0019861803661869416}, {"caption": "\\Statex", "snippet": "\\Statex", "meta": "algpascal-cmd", "score": 0.008622777195102994}, {"caption": "\\BState{}", "snippet": "\\BState{$1}", "meta": "algpascal-cmd", "score": 0.0008685861525307122}, {"caption": "\\BState", "snippet": "\\BState", "meta": "algpascal-cmd", "score": 0.0008685861525307122}, {"caption": "\\algloopdefx{}[][]{}", "snippet": "\\algloopdefx{$1}[$2][$3]{$4}", "meta": "algpascal-cmd", "score": 0.00025315185701145097}, {"caption": "\\algnewcommand", "snippet": "\\algnewcommand", "meta": "algpascal-cmd", "score": 0.0030209395012065327}, {"caption": "\\algnewcommand{}[]{}", "snippet": "\\algnewcommand{$1}[$2]{$3}", "meta": "algpascal-cmd", "score": 0.0030209395012065327}, {"caption": "\\Comment{}", "snippet": "\\Comment{$1}", "meta": "algpascal-cmd", "score": 0.005178604573219454}, {"caption": "\\algblockdefx{}{}[]", "snippet": "\\algblockdefx{$1}{$2}[$3]", "meta": "algpascal-cmd", "score": 0.00025315185701145097}, {"caption": "\\algrenewtext{}{}", "snippet": "\\algrenewtext{$1}{$2}", "meta": "algpascal-cmd", "score": 0.0024415580558825975}, {"caption": "\\algrenewtext{}[]{}", "snippet": "\\algrenewtext{$1}[$2]{$3}", "meta": "algpascal-cmd", "score": 0.0024415580558825975}, {"caption": "\\algblock{}{}", "snippet": "\\algblock{$1}{$2}", "meta": "algpascal-cmd", "score": 0.0007916858220314837}, {"caption": "\\csname", "snippet": "\\csname", "meta": "algpascal-cmd", "score": 0.008565354665444157}, {"caption": "\\algdef{}[]{}{}{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}{$5}{$6}", "meta": "algpascal-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}{}[]{}{}", "snippet": "\\algdef{$1}[$2]{$3}{$4}[$5]{$6}{$7}", "meta": "algpascal-cmd", "score": 0.0003102486920966127}, {"caption": "\\algdef{}[]{}[]{}", "snippet": "\\algdef{$1}[$2]{$3}[$4]{$5}", "meta": "algpascal-cmd", "score": 0.0003102486920966127}, {"caption": "\\algtext{}", "snippet": "\\algtext{$1}", "meta": "algpascal-cmd", "score": 0.0005463612015579842}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "algpascal-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "algpascal-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "algpascal-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "algpascal-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "algpascal-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "algpascal-cmd", "score": 0.0018957469739775527}], "cabin": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "cabin-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "cabin-cmd", "score": 0.008565354665444157}], "erewhon": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "erewhon-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "erewhon-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "erewhon-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "erewhon-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "erewhon-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "erewhon-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "erewhon-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "erewhon-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "erewhon-cmd", "score": 0.0018957469739775527}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "erewhon-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "erewhon-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "erewhon-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "erewhon-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "erewhon-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "erewhon-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "erewhon-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "erewhon-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "erewhon-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "erewhon-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "erewhon-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "erewhon-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "erewhon-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "erewhon-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "erewhon-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "erewhon-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "erewhon-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "erewhon-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "erewhon-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "erewhon-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "erewhon-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "erewhon-cmd", "score": 0.008565354665444157}], "tgcursor": [{"caption": "\\empty", "snippet": "\\empty", "meta": "tgcursor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgcursor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgcursor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgcursor-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "tgcursor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgcursor-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "tgcursor-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "tgcursor-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "tgcursor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "tgcursor-cmd", "score": 0.021170869458413965}], "ifvtex": [{"caption": "\\csname", "snippet": "\\csname", "meta": "ifvtex-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "ifvtex-cmd", "score": 0.002958865219480927}], "memhfixc": [{"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "memhfixc-cmd", "score": 1.2569477427490174}], "longfigure": [{"caption": "\\newpage", "snippet": "\\newpage", "meta": "longfigure-cmd", "score": 0.3277033727934986}], "lato": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "lato-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "lato-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "lato-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "lato-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "lato-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "lato-cmd", "score": 0.0018957469739775527}, {"caption": "\\scshape", "snippet": "\\scshape", "meta": "lato-cmd", "score": 0.05364108855914402}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "lato-cmd", "score": 0.00037306820619479756}], "authoraftertitle": [{"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "authoraftertitle-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "authoraftertitle-cmd", "score": 0.8973590434087177}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "authoraftertitle-cmd", "score": 0.9202908262245683}], "listofsymbols": [{"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "listofsymbols-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "listofsymbols-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "listofsymbols-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "listofsymbols-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "listofsymbols-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "listofsymbols-cmd", "score": 0.0018957469739775527}], "hvfloat": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hvfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "hvfloat-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "hvfloat-cmd", "score": 0.02900783226643065}, {"caption": "\\captionof{}{}", "snippet": "\\captionof{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.018348594199161503}, {"caption": "\\string", "snippet": "\\string", "meta": "hvfloat-cmd", "score": 0.001042697111754002}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "hvfloat-cmd", "score": 0.047007158741781095}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hvfloat-cmd", "score": 0.00530510025314411}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "hvfloat-cmd", "score": 0.0030745841706804776}, {"caption": "\\chapter{}", "snippet": "\\chapter{$1}", "meta": "hvfloat-cmd", "score": 0.422097569591803}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hvfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\hspace{}", "snippet": "\\hspace{$1}", "meta": "hvfloat-cmd", "score": 0.3147206476372336}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "hvfloat-cmd", "score": 1.2569477427490174}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "hvfloat-cmd", "score": 1.897791904799601}, {"caption": "\\ContinuedFloat", "snippet": "\\ContinuedFloat", "meta": "hvfloat-cmd", "score": 5.806935368083486e-05}, {"caption": "\\noindent", "snippet": "\\noindent", "meta": "hvfloat-cmd", "score": 0.42355747798114207}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hvfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hvfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "hvfloat-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "hvfloat-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "hvfloat-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "hvfloat-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hvfloat-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "hvfloat-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hvfloat-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "hvfloat-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "hvfloat-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "hvfloat-cmd", "score": 0.004649150613625593}, {"caption": "\\DeclareCaptionJustification{}{}", "snippet": "\\DeclareCaptionJustification{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.0001872850414971473}, {"caption": "\\DeclareCaptionLabelSeparator{}{}", "snippet": "\\DeclareCaptionLabelSeparator{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.0003890810058478364}, {"caption": "\\DeclareCaptionFormat{}{}", "snippet": "\\DeclareCaptionFormat{$1}{$2}", "meta": "hvfloat-cmd", "score": 0.0004717618449370015}, {"caption": "\\DeclareCaptionFont{}{}", "snippet": "\\DeclareCaptionFont{$1}{$2}", "meta": "hvfloat-cmd", "score": 5.0133404990680195e-05}, {"caption": "\\DeclareCaptionSubType[]{}", "snippet": "\\DeclareCaptionSubType[$1]{$2}", "meta": "hvfloat-cmd", "score": 0.0001872850414971473}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "hvfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "hvfloat-cmd", "score": 0.021170869458413965}, {"caption": "\\captionsetup{}", "snippet": "\\captionsetup{$1}", "meta": "hvfloat-cmd", "score": 0.02900783226643065}, {"caption": "\\captionsetup[]{}", "snippet": "\\captionsetup[$1]{$2}", "meta": "hvfloat-cmd", "score": 0.02900783226643065}, {"caption": "\\string", "snippet": "\\string", "meta": "hvfloat-cmd", "score": 0.001042697111754002}, {"caption": "\\DeclareCaptionType{}[][]", "snippet": "\\DeclareCaptionType{$1}[$2][$3]", "meta": "hvfloat-cmd", "score": 0.00015256647321237863}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hvfloat-cmd", "score": 0.00530510025314411}, {"caption": "\\footnote{}", "snippet": "\\footnote{$1}", "meta": "hvfloat-cmd", "score": 0.2253056071787701}, {"caption": "\\footnotemark[]", "snippet": "\\footnotemark[$1]", "meta": "hvfloat-cmd", "score": 0.021473212893597875}, {"caption": "\\footnotemark", "snippet": "\\footnotemark", "meta": "hvfloat-cmd", "score": 0.021473212893597875}], "thmbox": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "thmbox-cmd", "score": 0.00037306820619479756}], "proba": [{"caption": "\\frak{}", "snippet": "\\frak{$1}", "meta": "proba-cmd", "score": 0.0017966000518546787}, {"caption": "\\checkmark", "snippet": "\\checkmark", "meta": "proba-cmd", "score": 0.025060530944368123}, {"caption": "\\bold", "snippet": "\\bold", "meta": "proba-cmd", "score": 0.0014358547624941567}, {"caption": "\\bold{}", "snippet": "\\bold{$1}", "meta": "proba-cmd", "score": 0.0014358547624941567}, {"caption": "\\Bbb{}", "snippet": "\\Bbb{$1}", "meta": "proba-cmd", "score": 0.0006671850995492977}, {"caption": "\\Bbb", "snippet": "\\Bbb", "meta": "proba-cmd", "score": 0.0006671850995492977}], "datatool": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "datatool-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "datatool-cmd", "score": 0.021170869458413965}, {"caption": "\\longmapsto", "snippet": "\\longmapsto", "meta": "datatool-cmd", "score": 0.0017755897148012264}, {"caption": "\\Check{}", "snippet": "\\Check{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "datatool-cmd", "score": 0.006963729684667191}, {"caption": "\\do", "snippet": "\\do", "meta": "datatool-cmd", "score": 0.009278344180101056}, {"caption": "\\iff", "snippet": "\\iff", "meta": "datatool-cmd", "score": 0.004209937150980285}, {"caption": "\\And", "snippet": "\\And", "meta": "datatool-cmd", "score": 0.0011582952152188854}, {"caption": "\\And{}", "snippet": "\\And{$1}", "meta": "datatool-cmd", "score": 0.0011582952152188854}, {"caption": "\\oint", "snippet": "\\oint", "meta": "datatool-cmd", "score": 0.0028650540724050534}, {"caption": "\\boxed{}", "snippet": "\\boxed{$1}", "meta": "datatool-cmd", "score": 0.0035536135737312827}, {"caption": "\\Ddot{}", "snippet": "\\Ddot{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ignorespacesafterend", "snippet": "\\ignorespacesafterend", "meta": "datatool-cmd", "score": 0.0010893680553454854}, {"caption": "\\nonumber", "snippet": "\\nonumber", "meta": "datatool-cmd", "score": 0.051980653969641216}, {"caption": "\\Breve{}", "snippet": "\\Breve{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\mapsto", "snippet": "\\mapsto", "meta": "datatool-cmd", "score": 0.006473769486518971}, {"caption": "\\over{}", "snippet": "\\over{$1}", "meta": "datatool-cmd", "score": 0.0054372322008878786}, {"caption": "\\over", "snippet": "\\over", "meta": "datatool-cmd", "score": 0.0054372322008878786}, {"caption": "\\bigotimes", "snippet": "\\bigotimes", "meta": "datatool-cmd", "score": 0.000984722260624791}, {"caption": "\\bigoplus", "snippet": "\\bigoplus", "meta": "datatool-cmd", "score": 0.0011508785476242003}, {"caption": "\\theequation", "snippet": "\\theequation", "meta": "datatool-cmd", "score": 0.002995924112493351}, {"caption": "\\bigcap", "snippet": "\\bigcap", "meta": "datatool-cmd", "score": 0.005709261168797874}, {"caption": "\\xrightarrow{}", "snippet": "\\xrightarrow{$1}", "meta": "datatool-cmd", "score": 0.004163642482777231}, {"caption": "\\xrightarrow[]{}", "snippet": "\\xrightarrow[$1]{$2}", "meta": "datatool-cmd", "score": 0.004163642482777231}, {"caption": "\\atop", "snippet": "\\atop", "meta": "datatool-cmd", "score": 0.0006518541515279979}, {"caption": "\\dfrac{}{}", "snippet": "\\dfrac{$1}{$2}", "meta": "datatool-cmd", "score": 0.05397545277891961}, {"caption": "\\pmod", "snippet": "\\pmod", "meta": "datatool-cmd", "score": 0.0011773327219377148}, {"caption": "\\pmod{}", "snippet": "\\pmod{$1}", "meta": "datatool-cmd", "score": 0.0011773327219377148}, {"caption": "\\notag", "snippet": "\\notag", "meta": "datatool-cmd", "score": 0.00322520920930312}, {"caption": "\\int", "snippet": "\\int", "meta": "datatool-cmd", "score": 0.11946660537765894}, {"caption": "\\Vec{}", "snippet": "\\Vec{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\bigvee", "snippet": "\\bigvee", "meta": "datatool-cmd", "score": 0.0011677288242806726}, {"caption": "\\sum", "snippet": "\\sum", "meta": "datatool-cmd", "score": 0.42607994509619934}, {"caption": "\\hookrightarrow", "snippet": "\\hookrightarrow", "meta": "datatool-cmd", "score": 0.0015607282046545064}, {"caption": "\\bigsqcup", "snippet": "\\bigsqcup", "meta": "datatool-cmd", "score": 0.0003468284144579442}, {"caption": "\\hookleftarrow", "snippet": "\\hookleftarrow", "meta": "datatool-cmd", "score": 0.0016498799924012809}, {"caption": "\\Dot{}", "snippet": "\\Dot{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\dots", "snippet": "\\dots", "meta": "datatool-cmd", "score": 0.0847414497955395}, {"caption": "\\genfrac{}{}{}{}{}{}", "snippet": "\\genfrac{$1}{$2}{$3}{$4}{$5}{$6}", "meta": "datatool-cmd", "score": 0.004820143328295316}, {"caption": "\\genfrac", "snippet": "\\genfrac", "meta": "datatool-cmd", "score": 0.004820143328295316}, {"caption": "\\cfrac{}{}", "snippet": "\\cfrac{$1}{$2}", "meta": "datatool-cmd", "score": 0.006765684097139381}, {"caption": "\\Acute{}", "snippet": "\\Acute{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\ldots", "snippet": "\\ldots", "meta": "datatool-cmd", "score": 0.11585556755884258}, {"caption": "\\coprod", "snippet": "\\coprod", "meta": "datatool-cmd", "score": 0.00011383372700282614}, {"caption": "\\impliedby", "snippet": "\\impliedby", "meta": "datatool-cmd", "score": 2.3482915591834053e-05}, {"caption": "\\big", "snippet": "\\big", "meta": "datatool-cmd", "score": 0.05613164277964739}, {"caption": "\\idotsint", "snippet": "\\idotsint", "meta": "datatool-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\Longrightarrow", "snippet": "\\Longrightarrow", "meta": "datatool-cmd", "score": 0.002459139437356601}, {"caption": "\\allowdisplaybreaks", "snippet": "\\allowdisplaybreaks", "meta": "datatool-cmd", "score": 0.005931777024772073}, {"caption": "\\eqref{}", "snippet": "\\eqref{$1}", "meta": "datatool-cmd", "score": 0.06345266254167037}, {"caption": "\\mod", "snippet": "\\mod", "meta": "datatool-cmd", "score": 0.0015181439193121889}, {"caption": "\\mod{}", "snippet": "\\mod{$1}", "meta": "datatool-cmd", "score": 0.0015181439193121889}, {"caption": "\\arraystretch", "snippet": "\\arraystretch", "meta": "datatool-cmd", "score": 0.022224283488673075}, {"caption": "\\arraystretch{}", "snippet": "\\arraystretch{$1}", "meta": "datatool-cmd", "score": 0.022224283488673075}, {"caption": "\\bigg", "snippet": "\\bigg", "meta": "datatool-cmd", "score": 0.04318078602869565}, {"caption": "\\underset{}{}", "snippet": "\\underset{$1}{$2}", "meta": "datatool-cmd", "score": 0.012799893214578391}, {"caption": "\\dotsc", "snippet": "\\dotsc", "meta": "datatool-cmd", "score": 0.0008555101484119994}, {"caption": "\\doteq", "snippet": "\\doteq", "meta": "datatool-cmd", "score": 3.164631070474435e-05}, {"caption": "\\leftroot{}", "snippet": "\\leftroot{$1}", "meta": "datatool-cmd", "score": 6.625561928497235e-05}, {"caption": "\\substack{}", "snippet": "\\substack{$1}", "meta": "datatool-cmd", "score": 0.0037482529712850755}, {"caption": "\\Hat{}", "snippet": "\\Hat{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\frac{}{}", "snippet": "\\frac{$1}{$2}", "meta": "datatool-cmd", "score": 1.4341091141105058}, {"caption": "\\mspace{}", "snippet": "\\mspace{$1}", "meta": "datatool-cmd", "score": 3.423236656565836e-05}, {"caption": "\\Bar{}", "snippet": "\\Bar{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\Grave{}", "snippet": "\\Grave{$1}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\implies", "snippet": "\\implies", "meta": "datatool-cmd", "score": 0.021828316911576096}, {"caption": "\\tbinom", "snippet": "\\tbinom", "meta": "datatool-cmd", "score": 1.3908704929884828e-05}, {"caption": "\\dotsi", "snippet": "\\dotsi", "meta": "datatool-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\bigwedge", "snippet": "\\bigwedge", "meta": "datatool-cmd", "score": 0.000347742918592393}, {"caption": "\\sideset{}{}", "snippet": "\\sideset{$1}{$2}", "meta": "datatool-cmd", "score": 5.563481971953931e-05}, {"caption": "\\smash{}", "snippet": "\\smash{$1}", "meta": "datatool-cmd", "score": 0.008197171096663127}, {"caption": "\\smash[]{}", "snippet": "\\smash[$1]{$2}", "meta": "datatool-cmd", "score": 0.008197171096663127}, {"caption": "\\colon", "snippet": "\\colon", "meta": "datatool-cmd", "score": 0.005300291684408929}, {"caption": "\\intertext{}", "snippet": "\\intertext{$1}", "meta": "datatool-cmd", "score": 0.0016148076375871775}, {"caption": "\\Longleftarrow", "snippet": "\\Longleftarrow", "meta": "datatool-cmd", "score": 8.477207854183949e-05}, {"caption": "\\prod", "snippet": "\\prod", "meta": "datatool-cmd", "score": 0.02549889375975901}, {"caption": "\\AmS", "snippet": "\\AmS", "meta": "datatool-cmd", "score": 0.00047859486202980376}, {"caption": "\\overline{}", "snippet": "\\overline{$1}", "meta": "datatool-cmd", "score": 0.11280487530505384}, {"caption": "\\tfrac{}{}", "snippet": "\\tfrac{$1}{$2}", "meta": "datatool-cmd", "score": 0.0005923542426657187}, {"caption": "\\uproot{}", "snippet": "\\uproot{$1}", "meta": "datatool-cmd", "score": 6.625561928497235e-05}, {"caption": "\\bmod", "snippet": "\\bmod", "meta": "datatool-cmd", "score": 0.002022594681005002}, {"caption": "\\bmod{}", "snippet": "\\bmod{$1}", "meta": "datatool-cmd", "score": 0.002022594681005002}, {"caption": "\\pod{}", "snippet": "\\pod{$1}", "meta": "datatool-cmd", "score": 2.7817409859769657e-05}, {"caption": "\\label{}", "snippet": "\\label{$1}", "meta": "datatool-cmd", "score": 1.897791904799601}, {"caption": "\\longrightarrow", "snippet": "\\longrightarrow", "meta": "datatool-cmd", "score": 0.013399422292458848}, {"caption": "\\xleftarrow[]{}", "snippet": "\\xleftarrow[$1]{$2}", "meta": "datatool-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\xleftarrow{}", "snippet": "\\xleftarrow{$1}", "meta": "datatool-cmd", "score": 3.5779964196240445e-05}, {"caption": "\\mathaccentV", "snippet": "\\mathaccentV", "meta": "datatool-cmd", "score": 6.216218551413489e-05}, {"caption": "\\hdotsfor{}", "snippet": "\\hdotsfor{$1}", "meta": "datatool-cmd", "score": 0.00024247684499275043}, {"caption": "\\hdotsfor[]{}", "snippet": "\\hdotsfor[$1]{$2}", "meta": "datatool-cmd", "score": 0.00024247684499275043}, {"caption": "\\Bigg", "snippet": "\\Bigg", "meta": "datatool-cmd", "score": 0.015507614799858266}, {"caption": "\\Bigg[]", "snippet": "\\Bigg[$1]", "meta": "datatool-cmd", "score": 0.015507614799858266}, {"caption": "\\overset{}{}", "snippet": "\\overset{$1}{$2}", "meta": "datatool-cmd", "score": 0.007611544955294224}, {"caption": "\\Big", "snippet": "\\Big", "meta": "datatool-cmd", "score": 0.050370758781422345}, {"caption": "\\longleftrightarrow", "snippet": "\\longleftrightarrow", "meta": "datatool-cmd", "score": 0.0002851769278703356}, {"caption": "\\Longleftrightarrow", "snippet": "\\Longleftrightarrow", "meta": "datatool-cmd", "score": 0.0004896780659212191}, {"caption": "\\Longleftrightarrow{}", "snippet": "\\Longleftrightarrow{$1}", "meta": "datatool-cmd", "score": 0.0004896780659212191}, {"caption": "\\binom{}{}", "snippet": "\\binom{$1}{$2}", "meta": "datatool-cmd", "score": 0.013010882180364367}, {"caption": "\\longleftarrow", "snippet": "\\longleftarrow", "meta": "datatool-cmd", "score": 0.0011096532692473691}, {"caption": "\\dbinom{}{}", "snippet": "\\dbinom{$1}{$2}", "meta": "datatool-cmd", "score": 0.006800272303210672}, {"caption": "\\Tilde{}", "snippet": "\\Tilde{$1}", "meta": "datatool-cmd", "score": 7.874446783586035e-05}, {"caption": "\\bigcup", "snippet": "\\bigcup", "meta": "datatool-cmd", "score": 0.0058847868741168765}, {"caption": "\\sinh", "snippet": "\\sinh", "meta": "datatool-cmd", "score": 0.0006435164702005918}, {"caption": "\\sinh{}", "snippet": "\\sinh{$1}", "meta": "datatool-cmd", "score": 0.0006435164702005918}, {"caption": "\\operatorname{}", "snippet": "\\operatorname{$1}", "meta": "datatool-cmd", "score": 0.02181954887028883}, {"caption": "\\max", "snippet": "\\max", "meta": "datatool-cmd", "score": 0.04116833357968482}, {"caption": "\\liminf", "snippet": "\\liminf", "meta": "datatool-cmd", "score": 0.0015513861600956144}, {"caption": "\\liminf{}", "snippet": "\\liminf{$1}", "meta": "datatool-cmd", "score": 0.0015513861600956144}, {"caption": "\\operatornamewithlimits{}", "snippet": "\\operatornamewithlimits{$1}", "meta": "datatool-cmd", "score": 0.0022415507993352067}, {"caption": "\\exp", "snippet": "\\exp", "meta": "datatool-cmd", "score": 0.02404262443651467}, {"caption": "\\exp{}", "snippet": "\\exp{$1}", "meta": "datatool-cmd", "score": 0.02404262443651467}, {"caption": "\\lim", "snippet": "\\lim", "meta": "datatool-cmd", "score": 0.05285123457928509}, {"caption": "\\sin", "snippet": "\\sin", "meta": "datatool-cmd", "score": 0.040463088537699636}, {"caption": "\\sin{}", "snippet": "\\sin{$1}", "meta": "datatool-cmd", "score": 0.040463088537699636}, {"caption": "\\arg", "snippet": "\\arg", "meta": "datatool-cmd", "score": 0.007190995792600074}, {"caption": "\\cos", "snippet": "\\cos", "meta": "datatool-cmd", "score": 0.050370402546134785}, {"caption": "\\cos{}", "snippet": "\\cos{$1}", "meta": "datatool-cmd", "score": 0.050370402546134785}, {"caption": "\\varliminf", "snippet": "\\varliminf", "meta": "datatool-cmd", "score": 6.204977642542802e-05}, {"caption": "\\hom", "snippet": "\\hom", "meta": "datatool-cmd", "score": 8.180643329881783e-05}, {"caption": "\\tan", "snippet": "\\tan", "meta": "datatool-cmd", "score": 0.006176447465423192}, {"caption": "\\det", "snippet": "\\det", "meta": "datatool-cmd", "score": 0.005640718203101287}, {"caption": "\\ln", "snippet": "\\ln", "meta": "datatool-cmd", "score": 0.025366949660913504}, {"caption": "\\ln{}", "snippet": "\\ln{$1}", "meta": "datatool-cmd", "score": 0.025366949660913504}, {"caption": "\\cosh", "snippet": "\\cosh", "meta": "datatool-cmd", "score": 0.0008896391580266903}, {"caption": "\\cosh{}", "snippet": "\\cosh{$1}", "meta": "datatool-cmd", "score": 0.0008896391580266903}, {"caption": "\\gcd", "snippet": "\\gcd", "meta": "datatool-cmd", "score": 0.002254008371792865}, {"caption": "\\limsup", "snippet": "\\limsup", "meta": "datatool-cmd", "score": 0.002354950225950599}, {"caption": "\\limsup{}", "snippet": "\\limsup{$1}", "meta": "datatool-cmd", "score": 0.002354950225950599}, {"caption": "\\inf", "snippet": "\\inf", "meta": "datatool-cmd", "score": 0.00340470256994063}, {"caption": "\\arccos", "snippet": "\\arccos", "meta": "datatool-cmd", "score": 0.001781687642431819}, {"caption": "\\arccos{}", "snippet": "\\arccos{$1}", "meta": "datatool-cmd", "score": 0.001781687642431819}, {"caption": "\\ker", "snippet": "\\ker", "meta": "datatool-cmd", "score": 0.002475379242338094}, {"caption": "\\cot", "snippet": "\\cot", "meta": "datatool-cmd", "score": 0.0003640644365701238}, {"caption": "\\cot{}", "snippet": "\\cot{$1}", "meta": "datatool-cmd", "score": 0.0003640644365701238}, {"caption": "\\coth{}", "snippet": "\\coth{$1}", "meta": "datatool-cmd", "score": 0.00025939638266884963}, {"caption": "\\coth", "snippet": "\\coth", "meta": "datatool-cmd", "score": 0.00025939638266884963}, {"caption": "\\varlimsup", "snippet": "\\varlimsup", "meta": "datatool-cmd", "score": 6.204977642542802e-05}, {"caption": "\\log", "snippet": "\\log", "meta": "datatool-cmd", "score": 0.048131780413380156}, {"caption": "\\varinjlim", "snippet": "\\varinjlim", "meta": "datatool-cmd", "score": 0.000361814283649031}, {"caption": "\\deg", "snippet": "\\deg", "meta": "datatool-cmd", "score": 0.005542465148816408}, {"caption": "\\arctan", "snippet": "\\arctan", "meta": "datatool-cmd", "score": 0.0011971697553682045}, {"caption": "\\dim", "snippet": "\\dim", "meta": "datatool-cmd", "score": 0.0038210003967178293}, {"caption": "\\min", "snippet": "\\min", "meta": "datatool-cmd", "score": 0.03051120054363316}, {"caption": "\\Pr", "snippet": "\\Pr", "meta": "datatool-cmd", "score": 0.010227440663206161}, {"caption": "\\Pr[]", "snippet": "\\Pr[$1]", "meta": "datatool-cmd", "score": 0.010227440663206161}, {"caption": "\\tanh", "snippet": "\\tanh", "meta": "datatool-cmd", "score": 0.0021229156376192525}, {"caption": "\\tanh{}", "snippet": "\\tanh{$1}", "meta": "datatool-cmd", "score": 0.0021229156376192525}, {"caption": "\\arcsin", "snippet": "\\arcsin", "meta": "datatool-cmd", "score": 0.0007754886988089101}, {"caption": "\\arcsin{}", "snippet": "\\arcsin{$1}", "meta": "datatool-cmd", "score": 0.0007754886988089101}, {"caption": "\\DeclareMathOperator{}{}", "snippet": "\\DeclareMathOperator{$1}{$2}", "meta": "datatool-cmd", "score": 0.029440493885398676}, {"caption": "\\csc", "snippet": "\\csc", "meta": "datatool-cmd", "score": 0.00013963711107573638}, {"caption": "\\sup", "snippet": "\\sup", "meta": "datatool-cmd", "score": 0.009355514755312534}, {"caption": "\\sec", "snippet": "\\sec", "meta": "datatool-cmd", "score": 0.0005912636157903734}, {"caption": "\\varprojlim", "snippet": "\\varprojlim", "meta": "datatool-cmd", "score": 0.0004286136584068833}, {"caption": "\\stepcounter{}", "snippet": "\\stepcounter{$1}", "meta": "datatool-cmd", "score": 0.0030745841706804776}, {"caption": "\\addtocounter{}{}", "snippet": "\\addtocounter{$1}{$2}", "meta": "datatool-cmd", "score": 0.010241823778997489}, {"caption": "\\text{}", "snippet": "\\text{$1}", "meta": "datatool-cmd", "score": 0.3608680734736821}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datatool-cmd", "score": 0.008565354665444157}, {"caption": "\\pmb{}", "snippet": "\\pmb{$1}", "meta": "datatool-cmd", "score": 0.019171182556792562}, {"caption": "\\boldsymbol{}", "snippet": "\\boldsymbol{$1}", "meta": "datatool-cmd", "score": 0.18137737738638837}, {"caption": "\\boldsymbol", "snippet": "\\boldsymbol", "meta": "datatool-cmd", "score": 0.18137737738638837}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "datatool-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "datatool-cmd", "score": 0.021170869458413965}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "datatool-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "datatool-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "datatool-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "datatool-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "datatool-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "datatool-cmd", "score": 0.0018957469739775527}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "datatool-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "datatool-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "datatool-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "datatool-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "datatool-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "datatool-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "datatool-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "datatool-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "datatool-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "datatool-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "datatool-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "datatool-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "datatool-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "datatool-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "datatool-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "datatool-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "datatool-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "datatool-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "datatool-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "datatool-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "datatool-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "datatool-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "datatool-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "datatool-cmd", "score": 0.0063276692758974925}], "fmtcount": [{"caption": "\\csname", "snippet": "\\csname", "meta": "fmtcount-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "fmtcount-cmd", "score": 0.008565354665444157}, {"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "fmtcount-cmd", "score": 0.00037306820619479756}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "fmtcount-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "fmtcount-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "fmtcount-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "fmtcount-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "fmtcount-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "fmtcount-cmd", "score": 0.0018957469739775527}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "fmtcount-cmd", "score": 0.00021116765384691477}, {"caption": "\\robustify{}", "snippet": "\\robustify{$1}", "meta": "fmtcount-cmd", "score": 0.002671974990314091}, {"caption": "\\setbool{}{}", "snippet": "\\setbool{$1}{$2}", "meta": "fmtcount-cmd", "score": 0.00023171033119130004}, {"caption": "\\ifdefempty{}{}{}", "snippet": "\\ifdefempty{$1}{$2}{$3}", "meta": "fmtcount-cmd", "score": 7.482069221111606e-05}, {"caption": "\\apptocmd{}{}{}{}", "snippet": "\\apptocmd{$1}{$2}{$3}{$4}", "meta": "fmtcount-cmd", "score": 0.00035805058319299113}, {"caption": "\\ifstrequal{}{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}{$4}", "meta": "fmtcount-cmd", "score": 0.00041307691354437894}, {"caption": "\\ifstrequal{}{}{}", "snippet": "\\ifstrequal{$1}{$2}{$3}", "meta": "fmtcount-cmd", "score": 0.00041307691354437894}, {"caption": "\\string", "snippet": "\\string", "meta": "fmtcount-cmd", "score": 0.001042697111754002}, {"caption": "\\csedef{}{}", "snippet": "\\csedef{$1}{$2}", "meta": "fmtcount-cmd", "score": 0.00014933999190577243}, {"caption": "\\do", "snippet": "\\do", "meta": "fmtcount-cmd", "score": 0.009278344180101056}, {"caption": "\\newrobustcmd{}[]{}", "snippet": "\\newrobustcmd{$1}[$2]{$3}", "meta": "fmtcount-cmd", "score": 0.0006607703576475988}, {"caption": "\\ifdefstring{}{}{}{}", "snippet": "\\ifdefstring{$1}{$2}{$3}{$4}", "meta": "fmtcount-cmd", "score": 0.0006796212875843042}, {"caption": "\\ifbool{}{}{}", "snippet": "\\ifbool{$1}{$2}{$3}", "meta": "fmtcount-cmd", "score": 7.723677706376668e-05}, {"caption": "\\patchcmd{}{}{}{}{}", "snippet": "\\patchcmd{$1}{$2}{$3}{$4}{$5}", "meta": "fmtcount-cmd", "score": 0.002560998917940627}, {"caption": "\\patchcmd", "snippet": "\\patchcmd", "meta": "fmtcount-cmd", "score": 0.002560998917940627}, {"caption": "\\preto{}{}", "snippet": "\\preto{$1}{$2}", "meta": "fmtcount-cmd", "score": 8.860754525300578e-05}, {"caption": "\\ifnumcomp{}{}{}{}{}", "snippet": "\\ifnumcomp{$1}{$2}{$3}{$4}{$5}", "meta": "fmtcount-cmd", "score": 0.00029867998381154486}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "fmtcount-cmd", "score": 0.00530510025314411}, {"caption": "\\newbool{}", "snippet": "\\newbool{$1}", "meta": "fmtcount-cmd", "score": 7.723677706376668e-05}, {"caption": "\\AtBeginEnvironment{}{}", "snippet": "\\AtBeginEnvironment{$1}{$2}", "meta": "fmtcount-cmd", "score": 4.002553629215439e-05}, {"caption": "\\pretocmd{}{}{}{}", "snippet": "\\pretocmd{$1}{$2}{$3}{$4}", "meta": "fmtcount-cmd", "score": 0.00028992557275763024}, {"caption": "\\ifundef{}{}{}", "snippet": "\\ifundef{$1}{$2}{$3}", "meta": "fmtcount-cmd", "score": 0.00014933999190577243}, {"caption": "\\csname", "snippet": "\\csname", "meta": "fmtcount-cmd", "score": 0.008565354665444157}, {"caption": "\\do", "snippet": "\\do", "meta": "fmtcount-cmd", "score": 0.009278344180101056}, {"caption": "\\frenchspacing", "snippet": "\\frenchspacing", "meta": "fmtcount-cmd", "score": 0.0063276692758974925}], "aurl": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "aurl-cmd", "score": 0.00037306820619479756}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\AtBeginShipout{}", "snippet": "\\AtBeginShipout{$1}", "meta": "aurl-cmd", "score": 0.00047530324346933345}, {"caption": "\\AtBeginShipoutNext{}", "snippet": "\\AtBeginShipoutNext{$1}", "meta": "aurl-cmd", "score": 0.0005277905480209891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\UrlBreaks{}", "snippet": "\\UrlBreaks{$1}", "meta": "aurl-cmd", "score": 0.001030592515645366}, {"caption": "\\UrlBreaks", "snippet": "\\UrlBreaks", "meta": "aurl-cmd", "score": 0.001030592515645366}, {"caption": "\\Url", "snippet": "\\Url", "meta": "aurl-cmd", "score": 0.0002854206807593436}, {"caption": "\\UrlOrds{}", "snippet": "\\UrlOrds{$1}", "meta": "aurl-cmd", "score": 0.0006882563723629154}, {"caption": "\\UrlOrds", "snippet": "\\UrlOrds", "meta": "aurl-cmd", "score": 0.0006882563723629154}, {"caption": "\\urlstyle{}", "snippet": "\\urlstyle{$1}", "meta": "aurl-cmd", "score": 0.010515056688180681}, {"caption": "\\urldef{}", "snippet": "\\urldef{$1}", "meta": "aurl-cmd", "score": 0.008041789461944983}, {"caption": "\\UrlBigBreaks{}", "snippet": "\\UrlBigBreaks{$1}", "meta": "aurl-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlFont{}", "snippet": "\\UrlFont{$1}", "meta": "aurl-cmd", "score": 0.0032990580087398644}, {"caption": "\\UrlSpecials{}", "snippet": "\\UrlSpecials{$1}", "meta": "aurl-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\UrlNoBreaks", "snippet": "\\UrlNoBreaks", "meta": "aurl-cmd", "score": 3.7048287721105874e-05}, {"caption": "\\nameref{}", "snippet": "\\nameref{$1}", "meta": "aurl-cmd", "score": 0.009472569279662113}, {"caption": "\\pdfbookmark[]{}{}", "snippet": "\\pdfbookmark[$1]{$2}{$3}", "meta": "aurl-cmd", "score": 0.006492248863367502}, {"caption": "\\figureautorefname", "snippet": "\\figureautorefname", "meta": "aurl-cmd", "score": 0.00014582556188448738}, {"caption": "\\figureautorefname{}", "snippet": "\\figureautorefname{$1}", "meta": "aurl-cmd", "score": 0.00014582556188448738}, {"caption": "\\numberwithin{}{}", "snippet": "\\numberwithin{$1}{$2}", "meta": "aurl-cmd", "score": 0.006963729684667191}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\footnoteautorefname", "snippet": "\\footnoteautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\roman{}", "snippet": "\\roman{$1}", "meta": "aurl-cmd", "score": 0.005553384455935491}, {"caption": "\\roman", "snippet": "\\roman", "meta": "aurl-cmd", "score": 0.005553384455935491}, {"caption": "\\string", "snippet": "\\string", "meta": "aurl-cmd", "score": 0.001042697111754002}, {"caption": "\\MakeLowercase{}", "snippet": "\\MakeLowercase{$1}", "meta": "aurl-cmd", "score": 0.017289599800633146}, {"caption": "\\textunderscore", "snippet": "\\textunderscore", "meta": "aurl-cmd", "score": 0.001509072212764015}, {"caption": "\\do", "snippet": "\\do", "meta": "aurl-cmd", "score": 0.009278344180101056}, {"caption": "\\begin{}", "snippet": "\\begin{$1}", "meta": "aurl-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}[]", "snippet": "\\begin{$1}[$2]", "meta": "aurl-cmd", "score": 7.849662248028187}, {"caption": "\\begin{}{}", "snippet": "\\begin{$1}{$2}", "meta": "aurl-cmd", "score": 7.849662248028187}, {"caption": "\\FancyVerbLineautorefname", "snippet": "\\FancyVerbLineautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\hyperlink{}{}", "snippet": "\\hyperlink{$1}{$2}", "meta": "aurl-cmd", "score": 0.00978652043902115}, {"caption": "\\tableautorefname", "snippet": "\\tableautorefname", "meta": "aurl-cmd", "score": 0.00012704528567339081}, {"caption": "\\tableautorefname{}", "snippet": "\\tableautorefname{$1}", "meta": "aurl-cmd", "score": 0.00012704528567339081}, {"caption": "\\equationautorefname", "snippet": "\\equationautorefname", "meta": "aurl-cmd", "score": 0.00018777198999871106}, {"caption": "\\equationautorefname{}", "snippet": "\\equationautorefname{$1}", "meta": "aurl-cmd", "score": 0.00018777198999871106}, {"caption": "\\chapterautorefname", "snippet": "\\chapterautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\TeX", "snippet": "\\TeX", "meta": "aurl-cmd", "score": 0.02873756018238537}, {"caption": "\\TeX{}", "snippet": "\\TeX{$1}", "meta": "aurl-cmd", "score": 0.02873756018238537}, {"caption": "\\protect", "snippet": "\\protect", "meta": "aurl-cmd", "score": 0.0200686676229443}, {"caption": "\\appendixautorefname", "snippet": "\\appendixautorefname", "meta": "aurl-cmd", "score": 7.950698053641679e-05}, {"caption": "\\appendixautorefname{}", "snippet": "\\appendixautorefname{$1}", "meta": "aurl-cmd", "score": 7.950698053641679e-05}, {"caption": "\\newlabel{}{}", "snippet": "\\newlabel{$1}{$2}", "meta": "aurl-cmd", "score": 0.00029737672328168955}, {"caption": "\\texorpdfstring{}{}", "snippet": "\\texorpdfstring{$1}{$2}", "meta": "aurl-cmd", "score": 0.0073781967296121}, {"caption": "\\refstepcounter{}", "snippet": "\\refstepcounter{$1}", "meta": "aurl-cmd", "score": 0.002140559856649122}, {"caption": "\\alph", "snippet": "\\alph", "meta": "aurl-cmd", "score": 0.01034327266194849}, {"caption": "\\alph{}", "snippet": "\\alph{$1}", "meta": "aurl-cmd", "score": 0.01034327266194849}, {"caption": "\\pageref{}", "snippet": "\\pageref{$1}", "meta": "aurl-cmd", "score": 0.019788865471151957}, {"caption": "\\item", "snippet": "\\item", "meta": "aurl-cmd", "score": 3.800886892251021}, {"caption": "\\item[]", "snippet": "\\item[$1]", "meta": "aurl-cmd", "score": 3.800886892251021}, {"caption": "\\LaTeX", "snippet": "\\LaTeX", "meta": "aurl-cmd", "score": 0.2334089308452787}, {"caption": "\\LaTeX{}", "snippet": "\\LaTeX{$1}", "meta": "aurl-cmd", "score": 0.2334089308452787}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\itemautorefname", "snippet": "\\itemautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\caption{}", "snippet": "\\caption{$1}", "meta": "aurl-cmd", "score": 1.2569477427490174}, {"caption": "\\sectionautorefname", "snippet": "\\sectionautorefname", "meta": "aurl-cmd", "score": 0.0019832324299155183}, {"caption": "\\sectionautorefname{}", "snippet": "\\sectionautorefname{$1}", "meta": "aurl-cmd", "score": 0.0019832324299155183}, {"caption": "\\LaTeXe", "snippet": "\\LaTeXe", "meta": "aurl-cmd", "score": 0.007928096378157487}, {"caption": "\\LaTeXe{}", "snippet": "\\LaTeXe{$1}", "meta": "aurl-cmd", "score": 0.007928096378157487}, {"caption": "\\footref{}", "snippet": "\\footref{$1}", "meta": "aurl-cmd", "score": 0.0003680857021151614}, {"caption": "\\footref", "snippet": "\\footref", "meta": "aurl-cmd", "score": 0.0003680857021151614}, {"caption": "\\hypertarget{}{}", "snippet": "\\hypertarget{$1}{$2}", "meta": "aurl-cmd", "score": 0.009652820108904094}, {"caption": "\\theoremautorefname", "snippet": "\\theoremautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\maketitle", "snippet": "\\maketitle", "meta": "aurl-cmd", "score": 0.7504160124360846}, {"caption": "\\subparagraphautorefname", "snippet": "\\subparagraphautorefname", "meta": "aurl-cmd", "score": 0.0005446476945175932}, {"caption": "\\url{}", "snippet": "\\url{$1}", "meta": "aurl-cmd", "score": 0.13586474005868793}, {"caption": "\\author{}", "snippet": "\\author{$1}", "meta": "aurl-cmd", "score": 0.8973590434087177}, {"caption": "\\author[]{}", "snippet": "\\author[$1]{$2}", "meta": "aurl-cmd", "score": 0.8973590434087177}, {"caption": "\\href{}{}", "snippet": "\\href{$1}{$2}", "meta": "aurl-cmd", "score": 0.27111130260612365}, {"caption": "\\Roman{}", "snippet": "\\Roman{$1}", "meta": "aurl-cmd", "score": 0.0038703587462843594}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}, {"caption": "\\autoref{}", "snippet": "\\autoref{$1}", "meta": "aurl-cmd", "score": 0.03741172773691362}, {"caption": "\\nolinkurl{}", "snippet": "\\nolinkurl{$1}", "meta": "aurl-cmd", "score": 0.0004995635515943437}, {"caption": "\\end{}", "snippet": "\\end{$1}", "meta": "aurl-cmd", "score": 7.847906405228455}, {"caption": "\\phantomsection", "snippet": "\\phantomsection", "meta": "aurl-cmd", "score": 0.0174633138331273}, {"caption": "\\MakeUppercase{}", "snippet": "\\MakeUppercase{$1}", "meta": "aurl-cmd", "score": 0.006776001543888959}, {"caption": "\\MakeUppercase", "snippet": "\\MakeUppercase", "meta": "aurl-cmd", "score": 0.006776001543888959}, {"caption": "\\partautorefname", "snippet": "\\partautorefname", "meta": "aurl-cmd", "score": 1.8780276211096543e-05}, {"caption": "\\Itemautorefname{}", "snippet": "\\Itemautorefname{$1}", "meta": "aurl-cmd", "score": 6.006262128895586e-05}, {"caption": "\\halign{}", "snippet": "\\halign{$1}", "meta": "aurl-cmd", "score": 0.00017906650306643613}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "aurl-cmd", "score": 0.20852115286477566}, {"caption": "\\ref{}", "snippet": "\\ref{$1}", "meta": "aurl-cmd", "score": 1.4380093454211778}, {"caption": "\\Alph{}", "snippet": "\\Alph{$1}", "meta": "aurl-cmd", "score": 0.002233258780143355}, {"caption": "\\Alph", "snippet": "\\Alph", "meta": "aurl-cmd", "score": 0.002233258780143355}, {"caption": "\\appendix", "snippet": "\\appendix", "meta": "aurl-cmd", "score": 0.047007158741781095}, {"caption": "\\MP", "snippet": "\\MP", "meta": "aurl-cmd", "score": 0.00018344383742255004}, {"caption": "\\MP{}", "snippet": "\\MP{$1}", "meta": "aurl-cmd", "score": 0.00018344383742255004}, {"caption": "\\paragraphautorefname", "snippet": "\\paragraphautorefname", "meta": "aurl-cmd", "score": 0.0005446476945175932}, {"caption": "\\citeN{}", "snippet": "\\citeN{$1}", "meta": "aurl-cmd", "score": 0.0018503938529945614}, {"caption": "\\citeN", "snippet": "\\citeN", "meta": "aurl-cmd", "score": 0.0018503938529945614}, {"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "aurl-cmd", "score": 0.07503475348393239}, {"caption": "\\subsectionautorefname", "snippet": "\\subsectionautorefname", "meta": "aurl-cmd", "score": 0.0012546605780895737}, {"caption": "\\subsectionautorefname{}", "snippet": "\\subsectionautorefname{$1}", "meta": "aurl-cmd", "score": 0.0012546605780895737}, {"caption": "\\hyperref[]{}", "snippet": "\\hyperref[$1]{$2}", "meta": "aurl-cmd", "score": 0.004515152477030062}, {"caption": "\\arabic{}", "snippet": "\\arabic{$1}", "meta": "aurl-cmd", "score": 0.02445837629741638}, {"caption": "\\arabic", "snippet": "\\arabic", "meta": "aurl-cmd", "score": 0.02445837629741638}, {"caption": "\\newline", "snippet": "\\newline", "meta": "aurl-cmd", "score": 0.3311721696201715}, {"caption": "\\hypersetup{}", "snippet": "\\hypersetup{$1}", "meta": "aurl-cmd", "score": 0.06967310843464661}, {"caption": "\\subsubsectionautorefname", "snippet": "\\subsubsectionautorefname", "meta": "aurl-cmd", "score": 0.0012064581899162352}, {"caption": "\\subsubsectionautorefname{}", "snippet": "\\subsubsectionautorefname{$1}", "meta": "aurl-cmd", "score": 0.0012064581899162352}, {"caption": "\\title{}", "snippet": "\\title{$1}", "meta": "aurl-cmd", "score": 0.9202908262245683}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "aurl-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "aurl-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "aurl-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "aurl-cmd", "score": 0.002958865219480927}, {"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "aurl-cmd", "score": 0.00021116765384691477}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "aurl-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "aurl-cmd", "score": 0.00530510025314411}], "bchart": [{"caption": "\\setkeys{}{}", "snippet": "\\setkeys{$1}{$2}", "meta": "bchart-cmd", "score": 0.00037306820619479756}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bchart-cmd", "score": 0.008565354665444157}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bchart-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bchart-cmd", "score": 0.021170869458413965}, {"caption": "\\scalebox{}{}", "snippet": "\\scalebox{$1}{$2}", "meta": "bchart-cmd", "score": 0.015973401906548487}, {"caption": "\\reflectbox{}", "snippet": "\\reflectbox{$1}", "meta": "bchart-cmd", "score": 0.0005981923692899367}, {"caption": "\\reflectbox", "snippet": "\\reflectbox", "meta": "bchart-cmd", "score": 0.0005981923692899367}, {"caption": "\\resizebox{}{}{}", "snippet": "\\resizebox{$1}{$2}{$3}", "meta": "bchart-cmd", "score": 0.017834153815870245}, {"caption": "\\includegraphics[]{}", "snippet": "\\includegraphics[$1]{$2}", "meta": "bchart-cmd", "score": 1.4595731795525781}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bchart-cmd", "score": 0.00530510025314411}, {"caption": "\\DeclareGraphicsExtensions{}", "snippet": "\\DeclareGraphicsExtensions{$1}", "meta": "bchart-cmd", "score": 0.0055519509468004175}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bchart-cmd", "score": 0.008565354665444157}, {"caption": "\\graphicspath{}", "snippet": "\\graphicspath{$1}", "meta": "bchart-cmd", "score": 0.09973951908678011}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\DeclareGraphicsRule{}{}{}{}", "snippet": "\\DeclareGraphicsRule{$1}{$2}{$3}{$4}", "meta": "bchart-cmd", "score": 0.004649150613625593}, {"caption": "\\ifthenelse{}{}{}", "snippet": "\\ifthenelse{$1}{$2}{$3}", "meta": "bchart-cmd", "score": 0.009331077109224957}, {"caption": "\\ifthenelse{}", "snippet": "\\ifthenelse{$1}", "meta": "bchart-cmd", "score": 0.009331077109224957}, {"caption": "\\setboolean{}{}", "snippet": "\\setboolean{$1}{$2}", "meta": "bchart-cmd", "score": 0.0012203054938872515}, {"caption": "\\newboolean{}", "snippet": "\\newboolean{$1}", "meta": "bchart-cmd", "score": 0.0009170966832172938}, {"caption": "\\value{}", "snippet": "\\value{$1}", "meta": "bchart-cmd", "score": 0.01590723355124104}, {"caption": "\\boolean{}", "snippet": "\\boolean{$1}", "meta": "bchart-cmd", "score": 0.0018957469739775527}, {"caption": "\\rotatebox{}{}", "snippet": "\\rotatebox{$1}{$2}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox[]{}{}", "snippet": "\\rotatebox[$1]{$2}{$3}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\rotatebox{}", "snippet": "\\rotatebox{$1}", "meta": "bchart-cmd", "score": 0.004719094298848707}, {"caption": "\\definecolors{}", "snippet": "\\definecolors{$1}", "meta": "bchart-cmd", "score": 0.0003209840085766927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "bchart-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "bchart-cmd", "score": 0.021170869458413965}, {"caption": "\\fcolorbox{}{}{}", "snippet": "\\fcolorbox{$1}{$2}{$3}", "meta": "bchart-cmd", "score": 0.00926923425734719}, {"caption": "\\colorlet{}{}", "snippet": "\\colorlet{$1}{$2}", "meta": "bchart-cmd", "score": 0.03654388342026623}, {"caption": "\\textcolor{}{}", "snippet": "\\textcolor{$1}{$2}", "meta": "bchart-cmd", "score": 0.20852115286477566}, {"caption": "\\selectcolormodel{}", "snippet": "\\selectcolormodel{$1}", "meta": "bchart-cmd", "score": 0.000264339771769041}, {"caption": "\\rowcolors{}{}{}", "snippet": "\\rowcolors{$1}{$2}{$3}", "meta": "bchart-cmd", "score": 0.0014120076489723356}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "bchart-cmd", "score": 0.00530510025314411}, {"caption": "\\pagecolor{}", "snippet": "\\pagecolor{$1}", "meta": "bchart-cmd", "score": 0.0008147200475678891}, {"caption": "\\pagecolor{}{}", "snippet": "\\pagecolor{$1}{$2}", "meta": "bchart-cmd", "score": 0.0008147200475678891}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bchart-cmd", "score": 0.008565354665444157}, {"caption": "\\definecolor{}{}{}", "snippet": "\\definecolor{$1}{$2}{$3}", "meta": "bchart-cmd", "score": 0.16906710888680052}, {"caption": "\\colorbox{}{}", "snippet": "\\colorbox{$1}{$2}", "meta": "bchart-cmd", "score": 0.029302172361548254}, {"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "bchart-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "bchart-cmd", "score": 0.2864294797053033}], "pdftexcmds": [{"caption": "\\csname", "snippet": "\\csname", "meta": "pdftexcmds-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "pdftexcmds-cmd", "score": 0.002958865219480927}], "l3keys2e": [{"caption": "\\color[]{}", "snippet": "\\color[$1]{$2}", "meta": "l3keys2e-cmd", "score": 0.2864294797053033}, {"caption": "\\color{}", "snippet": "\\color{$1}", "meta": "l3keys2e-cmd", "score": 0.2864294797053033}], "xfor": [{"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "xfor-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "xfor-cmd", "score": 0.021170869458413965}], "accsupp": [{"caption": "\\RequireXeTeX", "snippet": "\\RequireXeTeX", "meta": "accsupp-cmd", "score": 0.00021116765384691477}, {"caption": "\\empty", "snippet": "\\empty", "meta": "accsupp-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "accsupp-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "accsupp-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "accsupp-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "accsupp-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "accsupp-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "accsupp-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "accsupp-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "accsupp-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "accsupp-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "accsupp-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "accsupp-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "accsupp-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "accsupp-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "accsupp-cmd", "score": 0.021170869458413965}], "trig": [{"caption": "\\csname", "snippet": "\\csname", "meta": "trig-cmd", "score": 0.008565354665444157}], "rerunfilecheck": [{"caption": "\\makeindex", "snippet": "\\makeindex", "meta": "rerunfilecheck-cmd", "score": 0.010304996748556729}, {"caption": "\\index{}", "snippet": "\\index{$1}", "meta": "rerunfilecheck-cmd", "score": 0.013774721817648336}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rerunfilecheck-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "rerunfilecheck-cmd", "score": 0.002958865219480927}, {"caption": "\\clearpage", "snippet": "\\clearpage", "meta": "rerunfilecheck-cmd", "score": 0.1789117552185788}, {"caption": "\\global", "snippet": "\\global", "meta": "rerunfilecheck-cmd", "score": 0.006609629561859019}, {"caption": "\\empty", "snippet": "\\empty", "meta": "rerunfilecheck-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "rerunfilecheck-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rerunfilecheck-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "rerunfilecheck-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "rerunfilecheck-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rerunfilecheck-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "rerunfilecheck-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "rerunfilecheck-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "rerunfilecheck-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rerunfilecheck-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "rerunfilecheck-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "rerunfilecheck-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "rerunfilecheck-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "rerunfilecheck-cmd", "score": 0.021170869458413965}], "pdfescape": [{"caption": "\\empty", "snippet": "\\empty", "meta": "pdfescape-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "pdfescape-cmd", "score": 0.00530510025314411}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "pdfescape-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "pdfescape-cmd", "score": 0.021170869458413965}, {"caption": "\\csname", "snippet": "\\csname", "meta": "pdfescape-cmd", "score": 0.008565354665444157}], "infwarerr": [{"caption": "\\empty", "snippet": "\\empty", "meta": "infwarerr-cmd", "score": 0.002958865219480927}, {"caption": "\\check{}", "snippet": "\\check{$1}", "meta": "infwarerr-cmd", "score": 0.0058342578961340175}, {"caption": "\\space", "snippet": "\\space", "meta": "infwarerr-cmd", "score": 0.023010789853665694}, {"caption": "\\csname", "snippet": "\\csname", "meta": "infwarerr-cmd", "score": 0.008565354665444157}], "kvsetkeys": [{"caption": "\\empty", "snippet": "\\empty", "meta": "kvsetkeys-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "kvsetkeys-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "kvsetkeys-cmd", "score": 0.008565354665444157}], "gettitlestring": [{"caption": "\\addcontentsline{}{}{}", "snippet": "\\addcontentsline{$1}{$2}{$3}", "meta": "gettitlestring-cmd", "score": 0.07503475348393239}, {"caption": "\\empty", "snippet": "\\empty", "meta": "gettitlestring-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "gettitlestring-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gettitlestring-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "gettitlestring-cmd", "score": 0.002958865219480927}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "gettitlestring-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gettitlestring-cmd", "score": 0.008565354665444157}, {"caption": "\\csname", "snippet": "\\csname", "meta": "gettitlestring-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "gettitlestring-cmd", "score": 0.002958865219480927}, {"caption": "\\expandafter", "snippet": "\\expandafter", "meta": "gettitlestring-cmd", "score": 0.021170869458413965}, {"caption": "\\expandafter{}", "snippet": "\\expandafter{$1}", "meta": "gettitlestring-cmd", "score": 0.021170869458413965}], "refcount": [{"caption": "\\thepage", "snippet": "\\thepage", "meta": "refcount-cmd", "score": 0.0591555998103519}], "bitset": [{"caption": "\\empty", "snippet": "\\empty", "meta": "bitset-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "bitset-cmd", "score": 0.008565354665444157}], "etexcmds": [{"caption": "\\csname", "snippet": "\\csname", "meta": "etexcmds-cmd", "score": 0.008565354665444157}, {"caption": "\\empty", "snippet": "\\empty", "meta": "etexcmds-cmd", "score": 0.002958865219480927}], "intcalc": [{"caption": "\\empty", "snippet": "\\empty", "meta": "intcalc-cmd", "score": 0.002958865219480927}, {"caption": "\\csname", "snippet": "\\csname", "meta": "intcalc-cmd", "score": 0.008565354665444157}], "hycolor": [{"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hycolor-cmd", "score": 0.00530510025314411}, {"caption": "\\csname", "snippet": "\\csname", "meta": "hycolor-cmd", "score": 0.008565354665444157}, {"caption": "\\noexpand", "snippet": "\\noexpand", "meta": "hycolor-cmd", "score": 0.00530510025314411}]} \ No newline at end of file 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 7d67b537b4..07ca3d2ecb 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,14 +1,8 @@ define [ - "./top_hundred_snippets", - "./package_definition_snippets" -], (topHundred, packageCommandMappings) -> + "./top_hundred_snippets" +], (topHundred) -> - rawCommands = Object.keys topHundred - - commandSnippets = [] - for cmd, snippets of topHundred - for snippet in snippets - commandSnippets.push snippet + commandNames = (snippet.caption.match(/\w+/)[0] for snippet in topHundred) class Parser constructor: (@doc, @prefix) -> @@ -104,29 +98,16 @@ define [ getCompletions: (editor, session, pos, prefix, callback) -> packages = @metadataManager.getAllPackages() packageCommands = [] - for pkg in packages - 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 - # } + for pkg, snippets of packages + for snippet in snippets + packageCommands.push snippet doc = session.getValue() parser = new Parser(doc, prefix) commands = parser.parse() completions = [] for command in commands - if command[0] not in rawCommands + if command[0] not in commandNames caption = "\\#{command[0]}" score = if caption == prefix then 99 else 50 snippet = caption @@ -145,7 +126,7 @@ define [ meta: "cmd" score: score } - completions = completions.concat commandSnippets, packageCommands + completions = completions.concat topHundred, 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 deleted file mode 100644 index 9ed0cb289f..0000000000 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/package_definition_snippets.coffee +++ /dev/null @@ -1 +0,0 @@ -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/top_hundred_snippets.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/top_hundred_snippets.coffee index 9423df89b3..7a00658711 100644 --- 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 @@ -1 +1,691 @@ -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}]} +define -> [{ + "caption": "\\begin{}", + "snippet": "\\begin{$1}", + "meta": "cmd", + "score": 7.849662248028187 +}, { + "caption": "\\begin{}[]", + "snippet": "\\begin{$1}[$2]", + "meta": "cmd", + "score": 7.849662248028187 +}, { + "caption": "\\begin{}{}", + "snippet": "\\begin{$1}{$2}", + "meta": "cmd", + "score": 7.849662248028187 +}, { + "caption": "\\end{}", + "snippet": "\\end{$1}", + "meta": "cmd", + "score": 7.847906405228455 +}, { + "caption": "\\usepackage{}", + "snippet": "\\usepackage{$1}", + "meta": "cmd", + "score": 5.427890758130527 +}, { + "caption": "\\usepackage[]{}", + "snippet": "\\usepackage[$1]{$2}", + "meta": "cmd", + "score": 5.427890758130527 +}, { + "caption": "\\item", + "snippet": "\\item", + "meta": "cmd", + "score": 3.800886892251021 +}, { + "caption": "\\item[]", + "snippet": "\\item[$1]", + "meta": "cmd", + "score": 3.800886892251021 +}, { + "caption": "\\section{}", + "snippet": "\\section{$1}", + "meta": "cmd", + "score": 3.0952612541683835 +}, { + "caption": "\\textbf{}", + "snippet": "\\textbf{$1}", + "meta": "cmd", + "score": 2.627755982816738 +}, { + "caption": "\\cite{}", + "snippet": "\\cite{$1}", + "meta": "cmd", + "score": 2.341195220791228 +}, { + "caption": "\\label{}", + "snippet": "\\label{$1}", + "meta": "cmd", + "score": 1.897791904799601 +}, { + "caption": "\\textit{}", + "snippet": "\\textit{$1}", + "meta": "cmd", + "score": 1.6842996195493385 +}, { + "caption": "\\includegraphics[]{}", + "snippet": "\\includegraphics[$1]{$2}", + "meta": "cmd", + "score": 1.4595731795525781 +}, { + "caption": "\\documentclass[]{}", + "snippet": "\\documentclass[$1]{$2}", + "meta": "cmd", + "score": 1.4425339817971206 +}, { + "caption": "\\documentclass{}", + "snippet": "\\documentclass{$1}", + "meta": "cmd", + "score": 1.4425339817971206 +}, { + "caption": "\\frac{}{}", + "snippet": "\\frac{$1}{$2}", + "meta": "cmd", + "score": 1.4341091141105058 +}, { + "caption": "\\subsection{}", + "snippet": "\\subsection{$1}", + "meta": "cmd", + "score": 1.3890912739512353 +}, { + "caption": "\\hline", + "snippet": "\\hline", + "meta": "cmd", + "score": 1.3209538327406387 +}, { + "caption": "\\caption{}", + "snippet": "\\caption{$1}", + "meta": "cmd", + "score": 1.2569477427490174 +}, { + "caption": "\\centering", + "snippet": "\\centering", + "meta": "cmd", + "score": 1.1642881814937829 +}, { + "caption": "\\vspace{}", + "snippet": "\\vspace{$1}", + "meta": "cmd", + "score": 0.9533807826673939 +}, { + "caption": "\\title{}", + "snippet": "\\title{$1}", + "meta": "cmd", + "score": 0.9202908262245683 +}, { + "caption": "\\author{}", + "snippet": "\\author{$1}", + "meta": "cmd", + "score": 0.8973590434087177 +}, { + "caption": "\\author[]{}", + "snippet": "\\author[$1]{$2}", + "meta": "cmd", + "score": 0.8973590434087177 +}, { + "caption": "\\maketitle", + "snippet": "\\maketitle", + "meta": "cmd", + "score": 0.7504160124360846 +}, { + "caption": "\\textwidth", + "snippet": "\\textwidth", + "meta": "cmd", + "score": 0.7355328080889112 +}, { + "caption": "\\newcommand{}{}", + "snippet": "\\newcommand{$1}{$2}", + "meta": "cmd", + "score": 0.7264891987129375 +}, { + "caption": "\\newcommand{}[]{}", + "snippet": "\\newcommand{$1}[$2]{$3}", + "meta": "cmd", + "score": 0.7264891987129375 +}, { + "caption": "\\date{}", + "snippet": "\\date{$1}", + "meta": "cmd", + "score": 0.7225518453076786 +}, { + "caption": "\\emph{}", + "snippet": "\\emph{$1}", + "meta": "cmd", + "score": 0.7060308784832261 +}, { + "caption": "\\textsc{}", + "snippet": "\\textsc{$1}", + "meta": "cmd", + "score": 0.6926466355384758 +}, { + "caption": "\\multicolumn{}{}{}", + "snippet": "\\multicolumn{$1}{$2}{$3}", + "meta": "cmd", + "score": 0.5473606021405326 +}, { + "caption": "\\input{}", + "snippet": "\\input{$1}", + "meta": "cmd", + "score": 0.4966021927742672 +}, { + "caption": "\\alpha", + "snippet": "\\alpha", + "meta": "cmd", + "score": 0.49520006391384913 +}, { + "caption": "\\in", + "snippet": "\\in", + "meta": "cmd", + "score": 0.4716039670146658 +}, { + "caption": "\\mathbf{}", + "snippet": "\\mathbf{$1}", + "meta": "cmd", + "score": 0.4682018419466319 +}, { + "caption": "\\right", + "snippet": "\\right", + "meta": "cmd", + "score": 0.4299239459457309 +}, { + "caption": "\\left", + "snippet": "\\left", + "meta": "cmd", + "score": 0.42937815279867964 +}, { + "caption": "\\left[]", + "snippet": "\\left[$1]", + "meta": "cmd", + "score": 0.42937815279867964 +}, { + "caption": "\\sum", + "snippet": "\\sum", + "meta": "cmd", + "score": 0.42607994509619934 +}, { + "caption": "\\noindent", + "snippet": "\\noindent", + "meta": "cmd", + "score": 0.42355747798114207 +}, { + "caption": "\\chapter{}", + "snippet": "\\chapter{$1}", + "meta": "cmd", + "score": 0.422097569591803 +}, { + "caption": "\\par", + "snippet": "\\par", + "meta": "cmd", + "score": 0.413853376001159 +}, { + "caption": "\\lambda", + "snippet": "\\lambda", + "meta": "cmd", + "score": 0.39389600578684125 +}, { + "caption": "\\subsubsection{}", + "snippet": "\\subsubsection{$1}", + "meta": "cmd", + "score": 0.3727781330132016 +}, { + "caption": "\\bibitem{}", + "snippet": "\\bibitem{$1}", + "meta": "cmd", + "score": 0.3689547570562042 +}, { + "caption": "\\bibitem[]{}", + "snippet": "\\bibitem[$1]{$2}", + "meta": "cmd", + "score": 0.3689547570562042 +}, { + "caption": "\\text{}", + "snippet": "\\text{$1}", + "meta": "cmd", + "score": 0.3608680734736821 +}, { + "caption": "\\setlength{}{}", + "snippet": "\\setlength{$1}{$2}", + "meta": "cmd", + "score": 0.354445763583904 +}, { + "caption": "\\setlength", + "snippet": "\\setlength", + "meta": "cmd", + "score": 0.354445763583904 +}, { + "caption": "\\mathcal{}", + "snippet": "\\mathcal{$1}", + "meta": "cmd", + "score": 0.35084018920966636 +}, { + "caption": "\\newline", + "snippet": "\\newline", + "meta": "cmd", + "score": 0.3311721696201715 +}, { + "caption": "\\newpage", + "snippet": "\\newpage", + "meta": "cmd", + "score": 0.3277033727934986 +}, { + "caption": "\\renewcommand{}{}", + "snippet": "\\renewcommand{$1}{$2}", + "meta": "cmd", + "score": 0.3267437011085663 +}, { + "caption": "\\renewcommand", + "snippet": "\\renewcommand", + "meta": "cmd", + "score": 0.3267437011085663 +}, { + "caption": "\\theta", + "snippet": "\\theta", + "meta": "cmd", + "score": 0.3210417159232142 +}, { + "caption": "\\hspace{}", + "snippet": "\\hspace{$1}", + "meta": "cmd", + "score": 0.3147206476372336 +}, { + "caption": "\\beta", + "snippet": "\\beta", + "meta": "cmd", + "score": 0.3061799530337638 +}, { + "caption": "\\texttt{}", + "snippet": "\\texttt{$1}", + "meta": "cmd", + "score": 0.3019066753744355 +}, { + "caption": "\\times", + "snippet": "\\times", + "meta": "cmd", + "score": 0.2957960629411553 +}, { + "caption": "\\citep{}", + "snippet": "\\citep{$1}", + "meta": "cmd", + "score": 0.2941882834697057 +}, { + "caption": "\\color[]{}", + "snippet": "\\color[$1]{$2}", + "meta": "cmd", + "score": 0.2864294797053033 +}, { + "caption": "\\color{}", + "snippet": "\\color{$1}", + "meta": "cmd", + "score": 0.2864294797053033 +}, { + "caption": "\\mu", + "snippet": "\\mu", + "meta": "cmd", + "score": 0.27635652476799255 +}, { + "caption": "\\bibliography{}", + "snippet": "\\bibliography{$1}", + "meta": "cmd", + "score": 0.2659628337907604 +}, { + "caption": "\\linewidth", + "snippet": "\\linewidth", + "meta": "cmd", + "score": 0.2639498312518439 +}, { + "caption": "\\delta", + "snippet": "\\delta", + "meta": "cmd", + "score": 0.2620578600722735 +}, { + "caption": "\\sigma", + "snippet": "\\sigma", + "meta": "cmd", + "score": 0.25940147926344487 +}, { + "caption": "\\pi", + "snippet": "\\pi", + "meta": "cmd", + "score": 0.25920934567729714 +}, { + "caption": "\\hat{}", + "snippet": "\\hat{$1}", + "meta": "cmd", + "score": 0.25264309033778715 +}, { + "caption": "\\hat", + "snippet": "\\hat", + "meta": "cmd", + "score": 0.25264309033778715 +}, { + "caption": "\\bibliographystyle{}", + "snippet": "\\bibliographystyle{$1}", + "meta": "cmd", + "score": 0.25122317941387773 +}, { + "caption": "\\small", + "snippet": "\\small", + "meta": "cmd", + "score": 0.2447632045426295 +}, { + "caption": "\\small{}", + "snippet": "\\small{$1}", + "meta": "cmd", + "score": 0.2447632045426295 +}, { + "caption": "\\LaTeX", + "snippet": "\\LaTeX", + "meta": "cmd", + "score": 0.2334089308452787 +}, { + "caption": "\\LaTeX{}", + "snippet": "\\LaTeX{$1}", + "meta": "cmd", + "score": 0.2334089308452787 +}, { + "caption": "\\cdot", + "snippet": "\\cdot", + "meta": "cmd", + "score": 0.23029085545522762 +}, { + "caption": "\\footnote{}", + "snippet": "\\footnote{$1}", + "meta": "cmd", + "score": 0.2253056071787701 +}, { + "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 +}, { + "caption": "\\Delta", + "snippet": "\\Delta", + "meta": "cmd", + "score": 0.21386475063892618 +}, { + "caption": "\\tau", + "snippet": "\\tau", + "meta": "cmd", + "score": 0.21236188205859796 +}, { + "caption": "\\hfill", + "snippet": "\\hfill", + "meta": "cmd", + "score": 0.2058248088519886 +}, { + "caption": "\\leq", + "snippet": "\\leq", + "meta": "cmd", + "score": 0.20498894440637172 +}, { + "caption": "\\footnotesize", + "snippet": "\\footnotesize", + "meta": "cmd", + "score": 0.2038592081252624 +}, { + "caption": "\\footnotesize{}", + "snippet": "\\footnotesize{$1}", + "meta": "cmd", + "score": 0.2038592081252624 +}, { + "caption": "\\large", + "snippet": "\\large", + "meta": "cmd", + "score": 0.20377416734108866 +}, { + "caption": "\\large{}", + "snippet": "\\large{$1}", + "meta": "cmd", + "score": 0.20377416734108866 +}, { + "caption": "\\sqrt{}", + "snippet": "\\sqrt{$1}", + "meta": "cmd", + "score": 0.20240160977404634 +}, { + "caption": "\\epsilon", + "snippet": "\\epsilon", + "meta": "cmd", + "score": 0.2005136761359043 +}, { + "caption": "\\Large", + "snippet": "\\Large", + "meta": "cmd", + "score": 0.1987771081149759 +}, { + "caption": "\\Large{}", + "snippet": "\\Large{$1}", + "meta": "cmd", + "score": 0.1987771081149759 +}, { + "caption": "\\cvitem{}{}", + "snippet": "\\cvitem{$1}{$2}", + "meta": "cmd", + "score": 0.19605476980016281 +}, { + "caption": "\\rho", + "snippet": "\\rho", + "meta": "cmd", + "score": 0.1959287380541684 +}, { + "caption": "\\omega", + "snippet": "\\omega", + "meta": "cmd", + "score": 0.19326783415115262 +}, { + "caption": "\\mathrm{}", + "snippet": "\\mathrm{$1}", + "meta": "cmd", + "score": 0.19117752976172653 +}, { + "caption": "\\boldsymbol{}", + "snippet": "\\boldsymbol{$1}", + "meta": "cmd", + "score": 0.18137737738638837 +}, { + "caption": "\\boldsymbol", + "snippet": "\\boldsymbol", + "meta": "cmd", + "score": 0.18137737738638837 +}, { + "caption": "\\gamma", + "snippet": "\\gamma", + "meta": "cmd", + "score": 0.17940276535431304 +}, { + "caption": "\\clearpage", + "snippet": "\\clearpage", + "meta": "cmd", + "score": 0.1789117552185788 +}, { + "caption": "\\infty", + "snippet": "\\infty", + "meta": "cmd", + "score": 0.17837290019711305 +}, { + "caption": "\\phi", + "snippet": "\\phi", + "meta": "cmd", + "score": 0.17405809173097808 +}, { + "caption": "\\partial", + "snippet": "\\partial", + "meta": "cmd", + "score": 0.17168102367966637 +}, { + "caption": "\\include{}", + "snippet": "\\include{$1}", + "meta": "cmd", + "score": 0.1547080054979312 +}, { + "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 +}, { + "caption": "\\quad", + "snippet": "\\quad", + "meta": "cmd", + "score": 0.15242755832392743 +}, { + "caption": "\\email{}", + "snippet": "\\email{$1}", + "meta": "cmd", + "score": 0.1522294670109857 +}, { + "caption": "\\paragraph{}", + "snippet": "\\paragraph{$1}", + "meta": "cmd", + "score": 0.152074250347974 +}, { + "caption": "\\varepsilon", + "snippet": "\\varepsilon", + "meta": "cmd", + "score": 0.05411564201390573 +}, { + "caption": "\\zeta", + "snippet": "\\zeta", + "meta": "cmd", + "score": 0.023330249803752954 +}, { + "caption": "\\eta", + "snippet": "\\eta", + "meta": "cmd", + "score": 0.11088718379889091 +}, { + "caption": "\\vartheta", + "snippet": "\\vartheta", + "meta": "cmd", + "score": 0.0025822992078068712 +}, { + "caption": "\\iota", + "snippet": "\\iota", + "meta": "cmd", + "score": 0.0024774003791525486 +}, { + "caption": "\\kappa", + "snippet": "\\kappa", + "meta": "cmd", + "score": 0.04887876299369008 +}, { + "caption": "\\nu", + "snippet": "\\nu", + "meta": "cmd", + "score": 0.09206962821059342 +}, { + "caption": "\\xi", + "snippet": "\\xi", + "meta": "cmd", + "score": 0.06496042899265699 +}, { + "caption": "\\varpi", + "snippet": "\\varpi", + "meta": "cmd", + "score": 0.0007039358167790341 +}, { + "caption": "\\varrho", + "snippet": "\\varrho", + "meta": "cmd", + "score": 0.0011279491613898612 +}, { + "caption": "\\varsigma", + "snippet": "\\varsigma", + "meta": "cmd", + "score": 0.0010424880711234978 +}, { + "caption": "\\varsigma{}", + "snippet": "\\varsigma{$1}", + "meta": "cmd", + "score": 0.0010424880711234978 +}, { + "caption": "\\upsilon", + "snippet": "\\upsilon", + "meta": "cmd", + "score": 0.00420715572598688 +}, { + "caption": "\\varphi", + "snippet": "\\varphi", + "meta": "cmd", + "score": 0.03351251516668212 +}, { + "caption": "\\chi", + "snippet": "\\chi", + "meta": "cmd", + "score": 0.043373492287805675 +}, { + "caption": "\\psi", + "snippet": "\\psi", + "meta": "cmd", + "score": 0.09994508706163642 +}, { + "caption": "\\Gamma", + "snippet": "\\Gamma", + "meta": "cmd", + "score": 0.04801549269801977 +}, { + "caption": "\\Theta", + "snippet": "\\Theta", + "meta": "cmd", + "score": 0.038090902146599444 +}, { + "caption": "\\Lambda", + "snippet": "\\Lambda", + "meta": "cmd", + "score": 0.032206594305977686 +}, { + "caption": "\\Xi", + "snippet": "\\Xi", + "meta": "cmd", + "score": 0.01060997225400494 +}, { + "caption": "\\Pi", + "snippet": "\\Pi", + "meta": "cmd", + "score": 0.021264671817473237 +}, { + "caption": "\\Sigma", + "snippet": "\\Sigma", + "meta": "cmd", + "score": 0.05769642802079917 +}, { + "caption": "\\Upsilon", + "snippet": "\\Upsilon", + "meta": "cmd", + "score": 0.00032875192955749566 +}, { + "caption": "\\Phi", + "snippet": "\\Phi", + "meta": "cmd", + "score": 0.0538724950042562 +}, { + "caption": "\\Psi", + "snippet": "\\Psi", + "meta": "cmd", + "score": 0.03056589143021648 +}, { + "caption": "\\Omega", + "snippet": "\\Omega", + "meta": "cmd", + "score": 0.09490387997853639 +}] diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee index e7b7d76005..362d163196 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/metadata/MetadataManager.coffee @@ -23,24 +23,34 @@ define [ range = new Range(end.row, 0, end.row, end.column) lineUpToCursor = @editor.getSession().getTextRange range if lineUpToCursor.trim() == '%' or lineUpToCursor.startsWith '\\' - # fix in case change is just (un)comment out a package - range = new Range end.row, 0, end.row, end.column + 80 + range = new Range(end.row, 0, end.row, end.column + 80) lineUpToCursor = @editor.getSession().getTextRange range commandFragment = getLastCommandFragment lineUpToCursor linesContainPackage = _.any( change.lines, - (line) -> line.match(/\\usepackage(?:\[.*?])?\s*{.*?}/) + (line) -> line.match(/^\\usepackage(?:\[.{0,80}?])?{(.{0,80}?)}/) + ) + linesContainReqPackage = _.any( + change.lines, + (line) -> line.match(/^\\RequirePackage(?:\[.{0,80}?])?{(.{0,80}?)}/) ) linesContainLabel = _.any( change.lines, - (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/) + (line) -> line.match(/\\label{(.{0,80}?)}/) ) - linesContainMeta = linesContainPackage or linesContainLabel + linesContainMeta = + linesContainPackage or + linesContainLabel or + linesContainReqPackage lastCommandFragmentIsLabel = commandFragment?.startsWith '\\label{' lastCommandFragmentIsPackage = commandFragment?.startsWith '\\usepackage' - lastCommandFragmentIsMeta = lastCommandFragmentIsPackage or lastCommandFragmentIsLabel + lastCommandFragmentIsReqPack = commandFragment?.startsWith '\\RequirePackage' + lastCommandFragmentIsMeta = + lastCommandFragmentIsPackage or + lastCommandFragmentIsLabel or + lastCommandFragmentIsReqPack if linesContainMeta or lastCommandFragmentIsMeta @scheduleLoadCurrentDocMetaFromServer() @@ -49,9 +59,6 @@ define [ e.oldSession.off "change", onChange e.session.on "change", onChange - # loadCurrentDocLabelsFromServer: () -> - # currentDocId = @$scope.docId - # @Metadata.loadDocMetaFromServer currentDocId loadDocMetaFromServer: (docId) -> @Metadata.loadDocMetaFromServer docId diff --git a/services/web/public/coffee/ide/metadata/services/metadata.coffee b/services/web/public/coffee/ide/metadata/services/metadata.coffee index 84059adbe2..009474b9f4 100644 --- a/services/web/public/coffee/ide/metadata/services/metadata.coffee +++ b/services/web/public/coffee/ide/metadata/services/metadata.coffee @@ -6,9 +6,7 @@ define [ state = {documents: {}} - metadata = { - state: state - } + metadata = {state: state} metadata.onBroadcastDocMeta = (data) -> if data.docId? and data.meta? @@ -26,7 +24,11 @@ define [ _.flatten(meta.labels for docId, meta of state.documents) metadata.getAllPackages = () -> - _.flatten(meta.packages for docId, meta of state.documents) + packageCommandMapping = {} + for _docId, meta of state.documents + for packageName, commandSnippets of meta.packages + packageCommandMapping[packageName] = commandSnippets + return packageCommandMapping metadata.loadProjectMetaFromServer = () -> $http diff --git a/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee b/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee index 920e0d468f..ba975dc559 100644 --- a/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee +++ b/services/web/test/UnitTests/coffee/Metadata/MetaHandlerTests.coffee @@ -17,15 +17,39 @@ describe 'MetaHandler', -> @DocumentUpdaterHandler = { flushDocToMongo: sinon.stub() } + @packageMapping = + foo: [ + { + caption: '\\bar' + snippet: '\\bar' + meta: 'foo-cmd' + score: 12 + }, { + caption: '\\bat[]{}' + snippet: '\\bar[$1]{$2}' + meta: 'foo-cmd' + score: 10 + } + ], + baz: [ + { + caption: '\\longercommandtest{}' + snippet: '\\longercommandtest{$1}' + meta: 'baz-cmd' + score: 50 + } + ] + @MetaHandler = SandboxedModule.require modulePath, requires: '../Project/ProjectEntityHandler': @ProjectEntityHandler '../DocumentUpdater/DocumentUpdaterHandler': @DocumentUpdaterHandler + './packageMapping': @packageMapping describe 'extractMetaFromDoc', -> beforeEach -> @lines = [ '\\usepackage{foo}' - '\\usepackage{bar, baz}' + '\\usepackage{amsmath, booktabs}' 'one' 'two' 'three \\label{aaa}' @@ -38,7 +62,20 @@ describe 'MetaHandler', -> docMeta = @MetaHandler.extractMetaFromDoc @lines expect(docMeta).to.deep.equal { labels: ['aaa', 'bbb'] - packages: ['foo', 'bar', 'baz'] + packages: + foo: [ + { + caption: '\\bar' + snippet: '\\bar' + meta: 'foo-cmd' + score: 12 + }, { + caption: '\\bat[]{}' + snippet: '\\bar[$1]{$2}' + meta: 'foo-cmd' + score: 10 + } + ] } describe 'extractMetaFromProjectDocs', -> @@ -60,13 +97,13 @@ describe 'MetaHandler', -> 'doc_four': _id: 'id_four' lines: [ - '\\usepackage[foo=bar,baz=bat]{ddd}' - '\\usepackage[draft]{something}' + '\\usepackage[width=\\textwidth]{baz}' + '\\usepackage{amsmath}' ] 'doc_five': _id: 'id_five' lines: [ - '\\usepackage{this,that}' + '\\usepackage{foo,baz}' '\\usepackage[options=foo]{hello}' 'some text' '\\section{this}\\label{sec:intro}' @@ -77,11 +114,41 @@ describe 'MetaHandler', -> it 'should extract all metadata', -> projectMeta = @MetaHandler.extractMetaFromProjectDocs @docs expect(projectMeta).to.deep.equal { - 'id_one': {labels: ['aaa'], packages: []} - 'id_two': {labels: [], packages: []} - 'id_three': {labels: ['bbb', 'ccc'], packages: []} - 'id_four': {labels: [], packages: ['ddd', 'something']} - 'id_five': {labels: ['sec:intro'], packages: ['this', 'that', 'hello']} + 'id_one': {labels: ['aaa'], packages: {}} + 'id_two': {labels: [], packages: {}} + 'id_three': {labels: ['bbb', 'ccc'], packages: {}} + 'id_four': + labels: [] + packages: + baz: [{ + caption: '\\longercommandtest{}' + snippet: '\\longercommandtest{$1}' + meta: 'baz-cmd' + score: 50}] + 'id_five': + labels: ['sec:intro'] + packages: + foo: [ + { + caption: '\\bar' + snippet: '\\bar' + meta: 'foo-cmd' + score: 12 + }, { + caption: '\\bat[]{}' + snippet: '\\bar[$1]{$2}' + meta: 'foo-cmd' + score: 10 + } + ] + baz: [ + { + caption: '\\longercommandtest{}' + snippet: '\\longercommandtest{$1}' + meta: 'baz-cmd' + score: 50 + } + ] } describe 'getMetaForDoc', -> @@ -127,11 +194,26 @@ describe 'MetaHandler', -> @fakeDocs = 'doc_one': lines: [ - '\\usepackage[some-options,more=foo]{pkg}' + '\\usepackage[some-options,more=foo]{foo}' '\\label{aaa}' ] - @fakeMeta = {labels: ['aaa'], packages: ['pkg']} + @fakeMeta = + labels: ['aaa'] + packages: + foo: [ + { + caption: '\\bar' + snippet: '\\bar' + meta: 'foo-cmd' + score: 12 + }, { + caption: '\\bat[]{}' + snippet: '\\bar[$1]{$2}' + meta: 'foo-cmd' + score: 10 + } + ] @DocumentUpdaterHandler.flushProjectToMongo = sinon.stub().callsArgWith 1, null @ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith 1, null, @fakeDocs @MetaHandler.extractMetaFromProjectDocs = sinon.stub().returns @fakeMeta From 428ae3aa53a6fb3283cac1c35a8350f44bd04564 Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Wed, 15 Nov 2017 09:27:46 -0500 Subject: [PATCH 08/10] adding labels service back --- .../Features/Labels/LabelsController.coffee | 28 ++++++++++++ .../Features/Labels/LabelsHandler.coffee | 43 ++++++++++++++++++ services/web/app/coffee/router.coffee | 4 ++ .../ide/editor/directives/aceEditor.coffee | 9 ++-- .../auto-complete/AutoCompleteManager.coffee | 2 +- .../coffee/ide/labels/LabelsManager.coffee | 13 ++++++ .../coffee/ide/labels/services/labels.coffee | 44 +++++++++++++++++++ 7 files changed, 139 insertions(+), 4 deletions(-) create mode 100644 services/web/app/coffee/Features/Labels/LabelsController.coffee create mode 100644 services/web/app/coffee/Features/Labels/LabelsHandler.coffee create mode 100644 services/web/public/coffee/ide/labels/LabelsManager.coffee create mode 100644 services/web/public/coffee/ide/labels/services/labels.coffee diff --git a/services/web/app/coffee/Features/Labels/LabelsController.coffee b/services/web/app/coffee/Features/Labels/LabelsController.coffee new file mode 100644 index 0000000000..7608a40021 --- /dev/null +++ b/services/web/app/coffee/Features/Labels/LabelsController.coffee @@ -0,0 +1,28 @@ +EditorRealTimeController = require "../Editor/EditorRealTimeController" +LabelsHandler = require './LabelsHandler' +logger = require 'logger-sharelatex' + + +module.exports = LabelsController = + + getAllLabels: (req, res, next) -> + project_id = req.params.project_id + logger.log {project_id}, "getting all labels for project" + LabelsHandler.getAllLabelsForProject project_id, (err, projectLabels) -> + if err? + logger.err {project_id, err}, "[LabelsController] error getting all labels from project" + return next(err) + res.json {projectId: project_id, projectLabels: projectLabels} + + broadcastLabelsForDoc: (req, res, next) -> + project_id = req.params.project_id + doc_id = req.params.doc_id + logger.log {project_id, doc_id}, "getting labels for doc" + LabelsHandler.getLabelsForDoc project_id, doc_id, (err, docLabels) -> + if err? + logger.err {project_id, doc_id, err}, "[LabelsController] error getting labels from doc" + return next(err) + EditorRealTimeController.emitToRoom project_id, 'broadcastDocLabels', { + docId: doc_id, labels: docLabels + } + res.sendStatus(200) diff --git a/services/web/app/coffee/Features/Labels/LabelsHandler.coffee b/services/web/app/coffee/Features/Labels/LabelsHandler.coffee new file mode 100644 index 0000000000..1d4cc013d5 --- /dev/null +++ b/services/web/app/coffee/Features/Labels/LabelsHandler.coffee @@ -0,0 +1,43 @@ +ProjectEntityHandler = require "../Project/ProjectEntityHandler" +DocumentUpdaterHandler = require('../DocumentUpdater/DocumentUpdaterHandler') + + +module.exports = LabelsHandler = + + labelCaptureRegex: () -> + /\\label\{([^\}\n\\]{0,80})\}/g + + getAllLabelsForProject: (projectId, callback=(err, projectLabels)->) -> + DocumentUpdaterHandler.flushProjectToMongo projectId, (err) -> + if err? + return callback(err) + ProjectEntityHandler.getAllDocs projectId, (err, docs) -> + if err? + return callback(err) + projectLabels = LabelsHandler.extractLabelsFromProjectDocs docs + callback(null, projectLabels) + + getLabelsForDoc: (projectId, docId, callback=(err, docLabels)->) -> + DocumentUpdaterHandler.flushDocToMongo projectId, docId, (err) -> + if err? + return callback(err) + ProjectEntityHandler.getDoc projectId, docId, (err, lines) -> + if err? + return callback(err) + docLabels = LabelsHandler.extractLabelsFromDoc lines + callback(null, docLabels) + + extractLabelsFromDoc: (lines) -> + docLabels = [] + for line in lines + re = LabelsHandler.labelCaptureRegex() + while (labelMatch = re.exec(line)) + if labelMatch[1] + docLabels.push(labelMatch[1]) + return docLabels + + extractLabelsFromProjectDocs: (projectDocs) -> + projectLabels = {} # docId => List[Label] + for _path, doc of projectDocs + projectLabels[doc._id] = LabelsHandler.extractLabelsFromDoc(doc.lines) + return projectLabels diff --git a/services/web/app/coffee/router.coffee b/services/web/app/coffee/router.coffee index bd8b8ca00e..8fe01725de 100644 --- a/services/web/app/coffee/router.coffee +++ b/services/web/app/coffee/router.coffee @@ -44,6 +44,7 @@ SudoModeMiddlewear = require('./Features/SudoMode/SudoModeMiddlewear') AnalyticsRouter = require('./Features/Analytics/AnalyticsRouter') AnnouncementsController = require("./Features/Announcements/AnnouncementsController") MetaController = require('./Features/Metadata/MetaController') +LabelsController = require('./Features/Labels/LabelsController') logger = require("logger-sharelatex") _ = require("underscore") @@ -204,6 +205,9 @@ module.exports = class Router webRouter.get '/project/:project_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetaController.getMetadata webRouter.post '/project/:project_id/doc/:doc_id/metadata', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), MetaController.broadcastMetadataForDoc + webRouter.get '/project/:project_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.getAllLabels + webRouter.post '/project/:project_id/doc/:doc_id/labels', AuthorizationMiddlewear.ensureUserCanReadProject, AuthenticationController.requireLogin(), LabelsController.broadcastLabelsForDoc + webRouter.get '/tag', AuthenticationController.requireLogin(), TagsController.getAllTags webRouter.post '/tag', AuthenticationController.requireLogin(), TagsController.createTag webRouter.post '/tag/:tag_id/rename', AuthenticationController.requireLogin(), TagsController.renameTag diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index 3dbe6371c3..e32adbd70e 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -10,10 +10,12 @@ define [ "ide/editor/directives/aceEditor/cursor-position/CursorPositionManager" "ide/editor/directives/aceEditor/track-changes/TrackChangesManager" "ide/editor/directives/aceEditor/metadata/MetadataManager" + "ide/editor/directives/aceEditor/labels/LabelsManager" + "ide/labels/servies/labels" "ide/metadata/services/metadata" "ide/graphics/services/graphics" "ide/preamble/services/preamble" -], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, MetadataManager) -> +], (App, Ace, SearchBox, ModeList, UndoManager, AutoCompleteManager, SpellCheckManager, HighlightsManager, CursorPositionManager, TrackChangesManager, MetadataManager, LabelsManager) -> EditSession = ace.require('ace/edit_session').EditSession ModeList = ace.require('ace/ext/modelist') @@ -36,7 +38,7 @@ define [ return url - App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, metadata, graphics, preamble) -> + App.directive "aceEditor", ($timeout, $compile, $rootScope, event_tracking, localStorage, $cacheFactory, labels, metadata, graphics, preamble) -> monkeyPatchSearch($rootScope, $compile) return { @@ -103,8 +105,9 @@ define [ highlightsManager = new HighlightsManager(scope, editor, element) cursorPositionManager = new CursorPositionManager(scope, editor, element, localStorage) trackChangesManager = new TrackChangesManager(scope, editor, element) + labelsManager = new LabelsManager(scope, editor, element, labels) metadataManager = new MetadataManager(scope, editor, element, metadata) - autoCompleteManager = new AutoCompleteManager(scope, editor, element, metadataManager, graphics, preamble) + autoCompleteManager = new AutoCompleteManager(scope, editor, element, metadataManager, labelsManager, graphics, preamble) # Prevert Ctrl|Cmd-S from triggering save dialog diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index f74222c831..452c0e58ff 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -9,7 +9,7 @@ define [ aceSnippetManager = ace.require('ace/snippets').snippetManager class AutoCompleteManager - constructor: (@$scope, @editor, @element, @metadataManager, @graphics, @preamble) -> + constructor: (@$scope, @editor, @element, @metadataManager, @labelsManager, @graphics, @preamble) -> @monkeyPatchAutocomplete() diff --git a/services/web/public/coffee/ide/labels/LabelsManager.coffee b/services/web/public/coffee/ide/labels/LabelsManager.coffee new file mode 100644 index 0000000000..d5e7e2892e --- /dev/null +++ b/services/web/public/coffee/ide/labels/LabelsManager.coffee @@ -0,0 +1,13 @@ +define [], () -> + + class LabelsManager + + constructor: (@ide, @$scope, @labels) -> + + @ide.socket.on 'broadcastDocLabels', (data) => + @labels.onBroadcastDocLabels(data) + @$scope.$on 'entity:deleted', @labels.onEntityDeleted + @$scope.$on 'file:upload:complete', @labels.fileUploadComplete + + loadProjectLabelsFromServer: () -> + @labels.loadProjectLabelsFromServer() diff --git a/services/web/public/coffee/ide/labels/services/labels.coffee b/services/web/public/coffee/ide/labels/services/labels.coffee new file mode 100644 index 0000000000..313d48175f --- /dev/null +++ b/services/web/public/coffee/ide/labels/services/labels.coffee @@ -0,0 +1,44 @@ +define [ + "base" +], (App) -> + + App.factory 'labels', ($http, ide) -> + + state = {documents: {}} + + labels = { + state: state + } + + labels.onBroadcastDocLabels = (data) -> + if data.docId and data.labels + state.documents[data.docId] = data.labels + + labels.onEntityDeleted = (e, entity) -> + if entity.type == 'doc' + delete state.documents[entity.id] + + labels.onFileUploadComplete = (e, upload) -> + if upload.entity_type == 'doc' + labels.loadDocLabelsFromServer(upload.entity_id) + + labels.getAllLabels = () -> + _.flatten(labels for docId, labels of state.documents) + + labels.loadProjectLabelsFromServer = () -> + $http + .get("/project/#{window.project_id}/labels") + .then (response) -> + { data } = response + if data.projectLabels + for docId, docLabels of data.projectLabels + state.documents[docId] = docLabels + + labels.loadDocLabelsFromServer = (docId) -> + $http + .post( + "/project/#{window.project_id}/doc/#{docId}/labels", + {_csrf: window.csrfToken} + ) + + return labels From a78330877b0b4de568414d3a441e34206ffd997e Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Wed, 15 Nov 2017 10:14:31 -0500 Subject: [PATCH 09/10] fixing services call --- .../web/public/coffee/ide/editor/directives/aceEditor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee index e32adbd70e..9c4051baaf 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor.coffee @@ -11,7 +11,7 @@ define [ "ide/editor/directives/aceEditor/track-changes/TrackChangesManager" "ide/editor/directives/aceEditor/metadata/MetadataManager" "ide/editor/directives/aceEditor/labels/LabelsManager" - "ide/labels/servies/labels" + "ide/labels/services/labels" "ide/metadata/services/metadata" "ide/graphics/services/graphics" "ide/preamble/services/preamble" From 00e3e8da9fd2cf668244541cbb39ab3d531606bc Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Thu, 16 Nov 2017 14:59:04 -0500 Subject: [PATCH 10/10] adding last labels configuration --- .../aceEditor/labels/LabelsManager.coffee | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee new file mode 100644 index 0000000000..a5d2c10625 --- /dev/null +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/labels/LabelsManager.coffee @@ -0,0 +1,58 @@ +define [ + "ace/ace" +], () -> + Range = ace.require("ace/range").Range + + getLastCommandFragment = (lineUpToCursor) -> + if m = lineUpToCursor.match(/(\\[^\\]+)$/) + return m[1] + else + return null + + class LabelsManager + constructor: (@$scope, @editor, @element, @Labels) -> + @debouncer = {} # DocId => Timeout + + onChange = (change) => + if change.remote + return + if change.action not in ['remove', 'insert'] + return + cursorPosition = @editor.getCursorPosition() + end = change.end + range = new Range(end.row, 0, end.row, end.column) + lineUpToCursor = @editor.getSession().getTextRange(range) + commandFragment = getLastCommandFragment(lineUpToCursor) + linesContainLabel = _.any(change.lines, (line) -> line.match(/\\label\{[^\}\n\\]{0,80}\}/)) + lastCommandFragmentIsLabel = commandFragment?.slice(0,7) == '\\label{' + if linesContainLabel or lastCommandFragmentIsLabel + @scheduleLoadCurrentDocLabelsFromServer() + + @editor.on "changeSession", (e) => + e.oldSession.off "change", onChange + e.session.on "change", onChange + + loadCurrentDocLabelsFromServer: () -> + currentDocId = @$scope.docId + @Labels.loadDocLabelsFromServer(currentDocId) + + loadDocLabelsFromServer: (docId) -> + @Labels.loadDocLabelsFromServer(docId) + + scheduleLoadCurrentDocLabelsFromServer: () -> + # De-bounce loading labels with a timeout + currentDocId = @$scope.docId + existingTimeout = @debouncer[currentDocId] + if existingTimeout? + clearTimeout(existingTimeout) + delete @debouncer[currentDocId] + @debouncer[currentDocId] = setTimeout( + () => + @loadDocLabelsFromServer(currentDocId) + delete @debouncer[currentDocId] + , 1000 + , this + ) + + getAllLabels: () -> + @Labels.getAllLabels()