diff options
author | katherine <ageha@airen-no-jikken.icu> | 2023-03-01 01:55:09 -0700 |
---|---|---|
committer | katherine <ageha@airen-no-jikken.icu> | 2023-03-01 01:55:09 -0700 |
commit | 4efa73cf6d8e8b13123d28d6e51ba0de4274161c (patch) | |
tree | 522279d0181adc73aeaf0a742b90b34d278afc58 /.vim/snippets | |
parent | e127c33cce5233c877ac02ebed682601ec71e2ab (diff) | |
download | dotfiles-4efa73cf6d8e8b13123d28d6e51ba0de4274161c.tar.gz |
more tex snippets
Diffstat (limited to '.vim/snippets')
-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} |