aboutsummaryrefslogtreecommitdiffstats
path: root/.vim/snippets
diff options
context:
space:
mode:
authorkatherine <ageha@airen-no-jikken.icu>2023-03-01 01:55:09 -0700
committerkatherine <ageha@airen-no-jikken.icu>2023-03-01 01:55:09 -0700
commit4efa73cf6d8e8b13123d28d6e51ba0de4274161c (patch)
tree522279d0181adc73aeaf0a742b90b34d278afc58 /.vim/snippets
parente127c33cce5233c877ac02ebed682601ec71e2ab (diff)
downloaddotfiles-4efa73cf6d8e8b13123d28d6e51ba0de4274161c.tar.gz
more tex snippets
Diffstat (limited to '.vim/snippets')
-rw-r--r--.vim/snippets/tex.snippets21
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}