mirror of
https://github.com/Ascyii/typstar.git
synced 2026-01-01 05:24:24 -05:00
feat(snip): bare integral (#5)
* feat!: `it` to `integral`, `int` for old behaviour * fix: formatting errors --------- Co-authored-by: arne314 <73391160+arne314@users.noreply.github.com>
This commit is contained in:
@@ -71,9 +71,10 @@ return {
|
||||
snip('(.*)kk', '<>^(<>)', { cap(1), i(1, 'n') }, math),
|
||||
|
||||
snip('ddx', '(d <>)(d <>)', { i(1, 'f'), i(2, 'x') }, math),
|
||||
snip('it', 'integral_(<>)^(<>)', { i(1, 'a'), i(2, 'b') }, math),
|
||||
snip('oit', 'integral_(Omega}', {}, math),
|
||||
snip('dit', 'integral_{<>}', { i(1, 'Omega') }, math),
|
||||
snip('it', 'integral', {}, math),
|
||||
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),
|
||||
snip('sum', 'sum_(<>)^(<>)', { i(1, 'i=0'), i(2, 'oo') }, math),
|
||||
|
||||
Reference in New Issue
Block a user