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.

63 lines
853 B

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