mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/UltiSnips/texmath.snippets

54 lines
892 B
Plaintext
Raw Normal View History

priority -50
2012-08-16 23:41:25 -04:00
##############
# MATH STUFF #
##############
2018-06-14 06:31:12 -04:00
2018-12-17 06:28:27 -05:00
snippet eqnn "Equation without a number" b
2012-08-16 23:41:25 -04:00
\begin{equation*}
2018-12-17 06:28:27 -05:00
${0:${VISUAL}}
2012-08-16 23:41:25 -04:00
\end{equation*}
endsnippet
2018-06-14 06:31:12 -04:00
snippet al "Align" b
\begin{align}
2018-12-17 06:28:27 -05:00
${0:${VISUAL}}
2018-06-14 06:31:12 -04:00
\end{align}
endsnippet
2018-12-17 06:28:27 -05:00
snippet alnn "Align without a number" b
2018-06-14 06:31:12 -04:00
\begin{align*}
2018-12-17 06:28:27 -05:00
${0:${VISUAL}}
2018-06-14 06:31:12 -04:00
\end{align*}
endsnippet
2012-08-16 23:41:25 -04:00
snippet eqa "Equation array" b
\begin{eqnarray}
2018-12-17 06:28:27 -05:00
${1:${VISUAL}} & ${2:${VISUAL}} & ${0:${VISUAL}}
2012-08-16 23:41:25 -04:00
\end{eqnarray}
endsnippet
2018-12-17 06:28:27 -05:00
snippet eqann "Equation array without a number" b
2012-08-16 23:41:25 -04:00
\begin{eqnarray*}
2018-12-17 06:28:27 -05:00
${1:${VISUAL}} & ${2:${VISUAL}} & ${0:${VISUAL}}
2012-08-16 23:41:25 -04:00
\end{eqnarray*}
endsnippet
2018-06-14 06:31:12 -04:00
#################
# PHYSICS STUFF #
#################
snippet dv "Derivative" w
\dv[${1:${VISUAL}}]{${2}}{${3}}
endsnippet
snippet pdv "Partial Derivative" w
\pdv[${1:${VISUAL}}]{${2}}{${3}}
endsnippet
snippet SI "SI-Unit" w
\SI{${1:${VISUAL}}}{${2}}
endsnippet
2012-08-16 23:41:25 -04:00
# vim:ft=snippets: