Mercurial > dotfiles.old
comparison 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 |
comparison
equal
deleted
inserted
replaced
50:226e484d3a75 | 51:6b18003ca702 |
---|---|
23 | 23 |
24 snippet toc | 24 snippet toc |
25 abbr table of contents | 25 abbr table of contents |
26 options head | 26 options head |
27 \tableofcontents[currentsection] | 27 \tableofcontents[currentsection] |
28 | |
29 snippet columns | |
30 abbr columns | |
31 options head | |
32 \begin{columns}[t] | |
33 \begin{column}[T]{.5\textwidth} | |
34 ${1:content_1} | |
35 \end{column} | |
36 \begin{column}[T]{.5\textwidth} | |
37 ${2:content_2} | |
38 \end{column} | |
39 \end{columns} | |
40 |