diff options
Diffstat (limited to '.vim')
-rw-r--r-- | .vim/snippets/tex.snippets | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/.vim/snippets/tex.snippets b/.vim/snippets/tex.snippets index bf1bd20..3e6d838 100644 --- a/.vim/snippets/tex.snippets +++ b/.vim/snippets/tex.snippets @@ -35,15 +35,24 @@ snippet tt typewriter (monospace) text snippet ft \footnote \\footnote{${1:${VISUAL:text}}}${0} +snippet ac \autocite + \\autocite{${1:${VISUAL:text}}}${0} -snippet dd 3dots - \\dd{}${0} -snippet ddd 4dots - \\dd{}${0} -snippet tw textwidth - \\textwidth${0} snippet hs hspace \\hspace{${1:${VISUAL:text}}}${0} snippet vs vspace \\vspace{${1:${VISUAL:text}}}${0} +snippet cw columnwidth + \\columnwidth${0} +snippet lw linewidth + \\linewidth${0} +snippet pw pagewidth + \\pagewidth${0} +snippet tw textwidth + \\textwidth${0} + +snippet dd 3dots + \\dd{}${0} +snippet ddd 4dots + \\ddd{}${0} |