minor(snip): update sum and integral snippets

This commit is contained in:
arne314
2025-08-27 17:48:41 +02:00
parent 6a9e5cccb7
commit 740849eb67

View File

@@ -84,15 +84,15 @@ return {
snip('DX', 'diff / (diff <>) ', { i(1, 'x') }, math, 900), snip('DX', 'diff / (diff <>) ', { i(1, 'x') }, math, 900),
snip('DDX', '(diff <>) / (diff <>) ', { i(1, 'f'), i(2, 'x') }, math), snip('DDX', '(diff <>) / (diff <>) ', { i(1, 'f'), i(2, 'x') }, math),
snip('part', 'partial ', {}, math, 1600), snip('part', 'partial ', {}, math, 1600),
snip('it', 'integral ', {}, math, 900), snip('it', 'integral ', {}, math, 900),
snip('int', 'integral_(<>)^(<>) ', { i(1, 'a'), i(2, 'b') }, math), snip('int', 'integral_(<>)^(<>) ', { i(1, 'a'), i(2, 'b') }, math),
snip('oit', 'integral_Omega ', {}, math), snip('oit', 'integral.cont_(<>) ', { i(1, 'C') }, math),
snip('dit', 'integral_(<>) ', { i(1, '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, 'k=1'), i(2, 'oo') }, math),
snip('osm', 'sum_Omega ', {}, math), snip('dsm', 'sum_(<>) ', { i(1, 'Omega') }, math),
snip('dsm', 'sum_(<>) ', { i(1, 'I') }, math),
snip('prd', 'product ', {}, math), snip('prd', 'product ', {}, math),
snip('prod', 'product_(<>)^(<>) ', { i(1, 'k=1'), i(2, 'n') }, math), snip('prod', 'product_(<>)^(<>) ', { i(1, 'k=1'), i(2, 'n') }, math),