0
|
1 # Latex Snippets
|
|
2
|
|
3 snippet subfigure
|
|
4 abbr subfigure
|
|
5 options head
|
|
6 \begin{subfigure}{0.5\textwidth}
|
|
7 \centering
|
|
8 \includegraphics[width=\textwidth]{${1:image}}
|
|
9 \end{subfigure}
|
|
10
|
|
11 snippet SI
|
|
12 abbr SI
|
|
13 alias \SI si
|
|
14 $\SI{${1:value}}{${2:unit}}$
|
30
|
15
|
|
16 snippet frame
|
|
17 abbr frame
|
|
18 options head
|
|
19 \begin{frame}
|
|
20 \frametitle{${1:title}}
|
|
21 ${2:content}
|
|
22 \end{frame}
|
|
23
|
|
24 snippet toc
|
|
25 abbr table of contents
|
|
26 options head
|
|
27 \tableofcontents[currentsection]
|
51
|
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
|