mirror of
https://github.com/Ascyii/typstar.git
synced 2026-01-01 05:24:24 -05:00
minor(snip): space after any math snippet
This commit is contained in:
@@ -66,22 +66,22 @@ return {
|
|||||||
snip('ep', 'exp(<>) ', { i(1, '1') }, math),
|
snip('ep', 'exp(<>) ', { i(1, '1') }, math),
|
||||||
snip('cc', 'cases(\n\t<>\n)\\', { i(1, '1') }, math),
|
snip('cc', 'cases(\n\t<>\n)\\', { i(1, '1') }, math),
|
||||||
snip('(K|M|N|Q|R|S|Z)([\\dn]) ', '<><>^<> ', { cap(1), cap(1), cap(2) }, math),
|
snip('(K|M|N|Q|R|S|Z)([\\dn]) ', '<><>^<> ', { cap(1), cap(1), cap(2) }, math),
|
||||||
snip('(.*)iv', '<>^(-1)', { cap(1) }, math),
|
snip('(.*)iv', '<>^(-1) ', { cap(1) }, math),
|
||||||
snip('(.*)sr', '<>^2', { cap(1) }, math),
|
snip('(.*)sr', '<>^2 ', { cap(1) }, math),
|
||||||
snip('(.*)cb', '<>^3', { cap(1) }, math),
|
snip('(.*)cb', '<>^3 ', { cap(1) }, math),
|
||||||
snip('(.*)jj', '<>_(<>)', { cap(1), i(1, 'n') }, math),
|
snip('(.*)jj', '<>_(<>) ', { cap(1), i(1, 'n') }, math),
|
||||||
snip('(.*)kk', '<>^(<>)', { cap(1), i(1, 'n') }, math),
|
snip('(.*)kk', '<>^(<>) ', { cap(1), i(1, 'n') }, math),
|
||||||
|
|
||||||
snip('ddx', '(d <>)(d <>)', { i(1, 'f'), i(2, 'x') }, math),
|
snip('ddx', '(d <>)(d <>) ', { i(1, 'f'), i(2, 'x') }, math),
|
||||||
snip('int', 'integral_(<>)^(<>)', { i(1, 'a'), i(2, 'b') }, math),
|
|
||||||
snip('oit', 'integral_Omega', {}, math),
|
|
||||||
snip('dit', 'integral_(<>)', { i(1, 'Omega') }, math),
|
|
||||||
snip('it', 'integral ', {}, math, 900),
|
snip('it', 'integral ', {}, math, 900),
|
||||||
|
snip('int', 'integral_(<>)^(<>) ', { i(1, 'a'), i(2, 'b') }, math),
|
||||||
|
snip('oit', 'integral_Omega ', {}, math),
|
||||||
|
snip('dit', 'integral_(<>) ', { i(1, 'Omega') }, math),
|
||||||
|
|
||||||
snip('sm', 'sum ', {}, math, 900),
|
snip('sm', 'sum ', {}, math, 900),
|
||||||
snip('sum', 'sum_(<>)^(<>)', { i(1, 'i=0'), i(2, 'oo') }, math),
|
snip('sum', 'sum_(<>)^(<>) ', { i(1, 'i=0'), i(2, 'oo') }, math),
|
||||||
snip('osm', 'sum_Omega', {}, math),
|
snip('osm', 'sum_Omega ', {}, math),
|
||||||
snip('dsm', 'sum_(<>)', { i(1, 'I') }, math),
|
snip('dsm', 'sum_(<>) ', { i(1, 'I') }, math),
|
||||||
|
|
||||||
snip('lm', 'lim ', {}, math),
|
snip('lm', 'lim ', {}, math),
|
||||||
snip('lim', 'lim_(<> ->> <>) ', { i(1, 'n'), i(2, 'oo') }, math),
|
snip('lim', 'lim_(<> ->> <>) ', { i(1, 'n'), i(2, 'oo') }, math),
|
||||||
|
|||||||
Reference in New Issue
Block a user