emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git

figure (206B)

    1 # -*- mode: snippet -*-
    2 # name: figure
    3 # key: figure
    4 # --
    5 \begin{figure}[htbp!]
    6   \centering
    7     \includegraphics[width=${1:0.6}\textwidth]{${2:img}}
    8     \caption{${3:caption}}
    9 \end{figure}
   10 \FloatBarrier
   11 $0