aboutsummaryrefslogtreecommitdiff
path: root/.config/coc/ultisnips/tex.snippets
blob: c1943a1f05ed083264b4a319e338608e6819ca6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
snippet newdocument "Starting point for a new LaTeX document"
\\documentclass[12pt, a4paper]{article}
\\usepackage[margin=1in]{geometry}

\\bigskipamount=7mm
\\medskipamount=4mm
\\parindent=0mm

\\begin{document}
${0}
\\end{document}
endsnippet

snippet beg "begin{} / end{}" bA
\\begin{$1}
	$0
\\end{$1}
endsnippet