Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
652 B

  1. snippet al "Align (math)" b
  2. \begin{align*}
  3. $0 \\\\
  4. \end{align*}
  5. endsnippet
  6. snippet pwf "Piecewise function" b
  7. \[
  8. ${1:name} = \left.
  9. \begin{cases}
  10. ${2:equation}, & ${3:condition} \\\\
  11. \end{cases}
  12. \right\\}
  13. \]
  14. endsnippet
  15. snippet int "Integral" i
  16. \int_{${1:lower}}^{${2:upper}} \, \mathrm{d}${3:x}
  17. endsnippet
  18. snippet ie "I-L equation" i
  19. $$1$ $2
  20. endsnippet
  21. snippet le "Lined equation" b
  22. $$$1$$
  23. endsnippet
  24. snippet sqrt "Square root" i
  25. \sqrt{$1}$2
  26. endsnippet
  27. snippet ex "cdot" i
  28. \cdot
  29. endsnippet
  30. snippet et "I-L var T" i
  31. $T$
  32. endsnippet
  33. snippet dlty "I-L Delta y" i
  34. $\Delta y$
  35. endsnippet
  36. snippet thus "Therefore" b
  37. $\therefore$
  38. endsnippet