1
0

add LaTeX snippets

This commit is contained in:
valeth 2016-04-22 09:56:09 +02:00
parent 2e3ed1455f
commit dd3ff07b9a

48
UltiSnips/tex.snippets Normal file
View File

@ -0,0 +1,48 @@
global !p
from ultisnips.all import *
endglobal
snippet title "LaTeX title page" b
\documentclass[a4paper]\{${1:article}\}
\title\{${2:TITLE}\}
\author\{${3:`!p snip.rv = getUsername("valeth", True)`}\}
\date\{${4:\today}\}
endsnippet
snippet doc "Document section" b
\begin\{document\}
\maketitle
\pagebreak
$0
\end\{document\}
endsnippet
snippet sec "Section"
\begin\{section\}\{${1:HEADER}\}
$0
\end\{section\}
\pagebreak
endsnippet
snippet ssec "Subsection"
\begin\{subsection\}\{${1:HEADER}\}
$0
\end\{subsection\}
endsnippet
snippet sssec "Sub-subsection" b
\begin\{subsubsection\}\{${1:HEADER}\}
$0
\end\{subsubsection\}
endsnippet