Skip to content

Commit 75309fc

Browse files
ujkuohonza
authored andcommitted
Fix wrong snippet commands
I modify snippets for Integral and Partial derivative for some typo. E.g., lack of \ and the argument number.
1 parent 95c6f94 commit 75309fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

snippets/tex.snippets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -380,11 +380,11 @@ snippet lim limit
380380

381381
# Partial derivative
382382
snippet pdv partial derivation
383-
\\frac{\\partial {$1}}{\partial {$2}} {$0}
383+
\\frac{\\partial {$1}}{\\partial {$2}} {$0}
384384

385385
# Second order partial derivative
386386
snippet ppdv second partial derivation
387-
\\frac{\partial^2 {$1}}{\partial {$2} \partial {$3}} {$0}
387+
\\frac{\\partial^2 {$1}}{\\partial {$2} \\partial {$3}} {$0}
388388

389389
# Ordinary derivative
390390
snippet dv derivative
@@ -416,7 +416,7 @@ snippet . dot product
416416

417417
# Integral
418418
snippet int integral
419-
\\int_{{$1}}^{{$2}} {$3} \: d{$4} {$5}
419+
\\int_{{$1}}^{{$2}} {$3} \\: d{$4} {$0}
420420

421421
# Right arrow
422422
snippet ra rightarrow

0 commit comments

Comments
 (0)