-
Notifications
You must be signed in to change notification settings - Fork 0
/
tex.snippets
43 lines (34 loc) · 966 Bytes
/
tex.snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
priority 1
snippet minipage "minipage" b
\begin{minipage}{${2:0.48\textwidth}}
${1}
\end{minipage}
endsnippet
###############################################################################
# import
###############################################################################
snippet graphicspath "graphicspath" b
\makeatletter
\graphicspath{ {\import@path/fig/} }
\makeatother
endsnippet
# https://ctan.org/pkg/import
snippet import "import" b
\import{${1:full_path}}{${2:file}}
endsnippet
snippet subimport "subimport" b
\subimport{${1:path_extension}}{${2:file}}
endsnippet
###############################################################################
# metropolis
###############################################################################
snippet fragile "fragile frame" b
\begin{frame}[fragile]{${1:title}}
${2}
\end{frame}
endsnippet
snippet standout "fragile frame" b
\begin{frame}[standout]{${1:title}}
${2}
\end{frame}
endsnippet