view vim/snippets/tex.snip @ 192:6df73555c3a7

Add terminal colours
author zegervdv <zegervdv@me.com>
date Sun, 09 Nov 2014 16:47:01 +0100
parents 6b18003ca702
children
line wrap: on
line source

# Latex Snippets

snippet     subfigure
abbr        subfigure
options     head
  \begin{subfigure}{0.5\textwidth}
    \centering
    \includegraphics[width=\textwidth]{${1:image}}
  \end{subfigure}

snippet     SI
abbr        SI
alias       \SI si
  $\SI{${1:value}}{${2:unit}}$

snippet     frame
abbr        frame
options     head
  \begin{frame}
    \frametitle{${1:title}}
    ${2:content}
  \end{frame}

snippet     toc
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}