snippets (new), Bash functions

- LaTeX: align, piecewise function
- snippets: tabstops, LaTeX environment
- .gitignore
This commit is contained in:
2018-01-31 01:58:04 -05:00
parent 872f0e5e0e
commit 8877960762
4 changed files with 38 additions and 8 deletions

View File

@@ -1,7 +1,15 @@
snippet eqs "Equation with split" b
\begin{equation*}
\begin{split}
$0
\end{split}
\end{equation*}
snippet al "Align (math)" b
\begin{align*}
$0
\end{align*}
endsnippet
snippet pwf "Piecewise function" b
\[
${1:name} = \left.
\begin{cases}
${2:equation}, & ${3:condition} \\\\
\end{cases}
\right\\}
\]
endsnippet