diff options
Diffstat (limited to '.vim/UltiSnips/tex.snippets')
| -rw-r--r-- | .vim/UltiSnips/tex.snippets | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.vim/UltiSnips/tex.snippets b/.vim/UltiSnips/tex.snippets index 38e9ef1..abaf5c6 100644 --- a/.vim/UltiSnips/tex.snippets +++ b/.vim/UltiSnips/tex.snippets @@ -4,33 +4,33 @@ $0 \end{$1} endsnippet -snippet $$ "Math" wA +snippet $$ "math env $$" wA $${1}$ $0 endsnippet -snippet \[ "Math" iA +snippet \[ "math block \[" iA \[ ${1:${VISUAL}} .\] $0 endsnippet -snippet frac "Fraction" iA +snippet frac "\\frac" iA \\frac{$1}{$2}$0 endsnippet snippet fun "Function" wA f: \R \to \R endsnippet -snippet sum "Sum" wA +snippet sum "\sum_" wA \sum_{n=1}^{${1:\infty}} $0 endsnippet -snippet !> "Maps to" wA +snippet !> "\mapsto" wA \mapsto endsnippet -snippet -> "To" wA +snippet -> "\to" wA \to endsnippet -snippet latex "latex" +snippet latex "\documentclass{report}" \documentclass{report} \usepackage[a4paper,margin=30truemm]{geometry} \usepackage{polyglossia} @@ -50,7 +50,7 @@ $0 \end{document} endsnippet -snippet letter "letter" +snippet brief "\documentclass{dinbrief}" \documentclass{dinbrief} \usepackage{graphicx} \usepackage[a4paper,margin=30truemm]{geometry} |