diff vim/snippets/tex.snip @ 51:6b18003ca702

Add latex snippet for columns
author zegervdv <zegervdv@me.com>
date Tue, 13 May 2014 21:53:54 +0200
parents 7dfc911400a3
children
line wrap: on
line diff
--- a/vim/snippets/tex.snip	Sat May 10 17:20:28 2014 +0200
+++ b/vim/snippets/tex.snip	Tue May 13 21:53:54 2014 +0200
@@ -25,3 +25,16 @@
 abbr        table of contents
 options     head
   \tableofcontents[currentsection]
+
+snippet     columns
+abbr        columns
+options     head
+  \begin{columns}[t]
+    \begin{column}[T]{.5\textwidth}
+      ${1:content_1}
+    \end{column}
+    \begin{column}[T]{.5\textwidth}
+      ${2:content_2}
+    \end{column}
+  \end{columns}
+