summaryrefslogtreecommitdiff
path: root/luasnip_snippets/tex.json
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
commitf1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch)
treebbe77eacaef8ab8a5999e517c3006973c9e3e44c /luasnip_snippets/tex.json
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'luasnip_snippets/tex.json')
-rw-r--r--luasnip_snippets/tex.json226
1 files changed, 226 insertions, 0 deletions
diff --git a/luasnip_snippets/tex.json b/luasnip_snippets/tex.json
new file mode 100644
index 0000000..e82145e
--- /dev/null
+++ b/luasnip_snippets/tex.json
@@ -0,0 +1,226 @@
+{
+ "cc": {
+ "prefix": "cc",
+ "description": "subset",
+ "body": "\\subset "
+ },
+ "inn": {
+ "prefix": "inn",
+ "description": "in ",
+ "body": "\\in "
+ },
+ "Nn": {
+ "prefix": "Nn",
+ "description": "cap",
+ "body": "\\cap "
+ },
+ "UU": {
+ "prefix": "UU",
+ "description": "cup",
+ "body": "\\cup "
+ },
+ "uuu": {
+ "prefix": "uuu",
+ "description": "bigcup",
+ "body": "\\bigcup_{${1:i \\in ${2: I}}\\} $0"
+ },
+ "nnn": {
+ "prefix": "nnn",
+ "description": "bigcap",
+ "body": "\\bigcap_{${1:i \\in ${2: I}}\\} $0"
+ },
+ "HH": {
+ "prefix": "HH",
+ "description": "H",
+ "body": "\\mathbb{H\\}"
+ },
+ "DD": {
+ "prefix": "DD",
+ "description": "D",
+ "body": "\\mathbb{D\\}"
+ },
+ "inmath": {
+ "prefix": "inmath",
+ "description": "Inline Math",
+ "body": "\\($1\\) $0"
+ },
+ "frac": {
+ "prefix": "frac",
+ "description": "Fraction",
+ "body": "\\frac{$1\\}{$2\\}$0"
+ },
+ "compl": {
+ "prefix": "compl",
+ "description": "Complement",
+ "body": "^{c\\}"
+ },
+ "ss": {
+ "prefix": "ss",
+ "description": "Super Script",
+ "body": "^{$1\\}$0"
+ },
+ "__": {
+ "prefix": "__",
+ "description": "subscript",
+ "body": "_{$1\\}$0",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "ceil": {
+ "prefix": "ceil",
+ "description": "Ceil",
+ "body": "\\left\\lceil $1 \\right\\rceil $0"
+ },
+ "floor": {
+ "prefix": "floor",
+ "description": "Floor",
+ "body": "\\left\\lfloor $1 \\right\\rfloor$0"
+ },
+ "pmat": {
+ "prefix": "pmat",
+ "description": "Pmat",
+ "body": "\\begin{pmatrix\\} $1 \\end{pmatrix\\} $0"
+ },
+ "bmat": {
+ "prefix": "bmat",
+ "description": "Bmat",
+ "body": "\\begin{bmatrix\\} $1 \\end{bmatrix\\} $0"
+ },
+ "conj": {
+ "prefix": "conj",
+ "description": "conjugate",
+ "body": "\\overline{$1\\}$0"
+ },
+ "sum": {
+ "prefix": "sum",
+ "description": "sum",
+ "body": "\\sum_{n=${1:1}\\}^{${2:\\infty}\\} ${3:a_n z^n}"
+ },
+ "taylor": {
+ "prefix": "taylor",
+ "description": "taylor",
+ "body": "\\sum_{${1:k}=${2:0}\\}^{${3:\\infty}\\} ${4:c_$1} (x-a)^$1 $0"
+ },
+ "lim": {
+ "prefix": "lim",
+ "description": "limit",
+ "body": "\\lim_{${1:n} \\to ${2:\\infty}\\} "
+ },
+ "limsup": {
+ "prefix": "limsup",
+ "description": "limsup",
+ "body": "\\limsup_{${1:n} \\to ${2:\\infty}\\} "
+ },
+ "part": {
+ "prefix": "part",
+ "description": "d/dx",
+ "body": "\\frac{\\partial ${1:V}\\}{\\partial ${2:x}\\} $0"
+ },
+ "ooo": {
+ "prefix": "ooo",
+ "description": "\\infty",
+ "body": "\\infty"
+ },
+ "rij": {
+ "prefix": "rij",
+ "description": "mrij",
+ "body": "(${1:x}_${2:n})_{${3:$2}\\in${4:\\N}\\}$0"
+ },
+ "=>": {
+ "prefix": "=>",
+ "description": "Implies",
+ "body": "\\implies"
+ },
+ "=<": {
+ "prefix": "=<",
+ "description": "Implied by",
+ "body": "\\impliedby"
+ },
+ "iff": {
+ "prefix": "iff",
+ "description": "iff",
+ "body": "\\iff"
+ },
+ "==": {
+ "prefix": "==",
+ "description": "Equals",
+ "body": "&= $1 \\\\"
+ },
+ "!=": {
+ "prefix": "!=",
+ "description": "Not Equal",
+ "body": "\\neq "
+ },
+ "<=": {
+ "prefix": "<=",
+ "description": "leq",
+ "body": "\\le ",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ ">=": {
+ "prefix": ">=",
+ "description": "geq",
+ "body": "\\ge ",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "lll": {
+ "prefix": "lll",
+ "description": "l",
+ "body": "\\ell",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "xx": {
+ "prefix": "xx",
+ "description": "cross",
+ "body": "\\times ",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "<!": {
+ "prefix": "<!",
+ "description": "normal",
+ "body": "\\triangleleft ",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "!>": {
+ "prefix": "!>",
+ "description": "mapsto",
+ "body": "\\mapsto ",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "docls": {
+ "prefix": "docls",
+ "description": "Document Class",
+ "body": "\\documentclass{$1\\}$0",
+ "luasnip": {
+ "autotrigger": true
+ }
+ },
+ "acl": {
+ "prefix": "acl",
+ "description": "Acroynm expanded",
+ "body": "\\acl{${1:acronym}\\}"
+ },
+ "ac": {
+ "prefix": "ac",
+ "description": "Acroynm normal",
+ "body": "\\ac{${1:acronym}\\}"
+ },
+ "ni": {
+ "prefix": "ni",
+ "description": "Non-indented paragraph",
+ "body": "\\noindent"
+ }
+}