Add yasnippet snippets for latex

- f1 adds a frac 1/ something
- prob adds a section and align*
This commit is contained in:
Adam Goldsmith 2015-10-10 14:21:10 -04:00
parent 12523f7a37
commit 3974264bd6
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# -*- mode: snippet; require-final-newline: nil -*-
# name: frac1
# key: f1
# --
\frac{1}{$1}$0

View File

@ -0,0 +1,8 @@
# -*- mode: snippet; require-final-newline: nil -*-
# name: problem
# key: prob
# --
\sub$1section{}
\begin{align*}
$0
\end{align*}