1
Fork 0

Added/tweaked latex abbreviations!

This commit is contained in:
Matei Adriel 2023-04-03 03:06:51 +02:00
parent b030524e83
commit f7e66f6428
No known key found for this signature in database

View file

@ -60,7 +60,6 @@ local abbreviations = {
{ "tto", "\\to" }, { "tto", "\\to" },
{ "iip", "\\implies" }, { "iip", "\\implies" },
{ "iib", "\\impliedby" }, { "iib", "\\impliedby" },
{ "iff", "\\iff" },
{ "land", "\\land" }, { "land", "\\land" },
{ "lor", "\\lor" }, { "lor", "\\lor" },
{ "ssin", "\\sin" }, { "ssin", "\\sin" },
@ -120,6 +119,11 @@ local abolishAbbreviations = {
{ "lcon{,s}", "linear combination{}" }, { "lcon{,s}", "linear combination{}" },
{ "vsm", "\\vecspace" }, -- math vector space { "vsm", "\\vecspace" }, -- math vector space
{ "vst{,s}", "vector space{,s}" }, -- text vector space { "vst{,s}", "vector space{,s}" }, -- text vector space
{
"rizz", -- ok please ignore this one 💀
"Riesz vector",
options = A.no_capitalization,
},
-- Graph theory -- Graph theory
{ "vx{,s}", "vert{ex,ices}" }, { "vx{,s}", "vert{ex,ices}" },
@ -158,8 +162,8 @@ local abolishAbbreviations = {
-- - Any operator can be prefixed with cr to -- - Any operator can be prefixed with cr to
-- start a new line and align in aligned mode -- start a new line and align in aligned mode
{ {
"{cr,a,}{eq,neq,leq,geq,lt,gt}", "{cr,a,}{eq,neq,leq,geq,lt,gt,iff}",
"{\\\\\\&,&,}{=,\\neq,\\leq,\\geq,<,>}", "{\\\\\\&,&,}{=,\\neq,\\leq,\\geq,<,>,\\iff}",
options = A.no_capitalization, options = A.no_capitalization,
}, },