2014-03-11 16:10:50 -04:00
|
|
|
priority -50
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
extends texmath
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
snippet "b(egin)?" "begin{} / end{}" br
|
|
|
|
\begin{${1:something}}
|
|
|
|
${0:${VISUAL}}
|
|
|
|
\end{$1}
|
|
|
|
endsnippet
|
|
|
|
|
2017-05-26 05:30:32 -04:00
|
|
|
snippet abs "abstract environment" b
|
|
|
|
\begin{abstract}
|
|
|
|
$0
|
|
|
|
\end{abstract}
|
|
|
|
endsnippet
|
|
|
|
|
2014-07-02 07:18:18 -04:00
|
|
|
snippet tab "tabular / array environment" b
|
2012-08-16 23:41:25 -04:00
|
|
|
\begin{${1:t}${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}{${2:c}}
|
2016-12-27 09:46:49 -05:00
|
|
|
$0${2/(?<=.)(c|l|r)|./(?1: & )/g}
|
2012-08-16 23:41:25 -04:00
|
|
|
\end{$1${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}
|
|
|
|
endsnippet
|
|
|
|
|
2015-01-18 07:58:28 -05:00
|
|
|
snippet table "Table environment" b
|
|
|
|
\begin{table}[${1:htpb}]
|
|
|
|
\centering
|
|
|
|
\caption{${2:caption}}
|
|
|
|
\label{tab:${3:label}}
|
|
|
|
\begin{${4:t}${4/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}{${5:c}}
|
2016-12-27 09:46:49 -05:00
|
|
|
$0${5/(?<=.)(c|l|r)|./(?1: & )/g}
|
2015-01-18 07:58:28 -05:00
|
|
|
\end{$4${4/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}
|
|
|
|
\end{table}
|
|
|
|
endsnippet
|
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
snippet fig "Figure environment" b
|
2014-10-14 09:30:33 -04:00
|
|
|
\begin{figure}[${2:htpb}]
|
2014-03-11 16:10:50 -04:00
|
|
|
\centering
|
|
|
|
\includegraphics[width=${3:0.8}\linewidth]{${4:name.ext}}
|
|
|
|
\caption{${4/(\w+)\.\w+/\u$1/}$0}
|
|
|
|
\label{fig:${4/(\w+)\.\w+/$1/}}
|
|
|
|
\end{figure}
|
|
|
|
endsnippet
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet enum "Enumerate" b
|
|
|
|
\begin{enumerate}
|
|
|
|
\item $0
|
|
|
|
\end{enumerate}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet item "Itemize" b
|
|
|
|
\begin{itemize}
|
|
|
|
\item $0
|
|
|
|
\end{itemize}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet desc "Description" b
|
|
|
|
\begin{description}
|
|
|
|
\item[$1] $0
|
|
|
|
\end{description}
|
|
|
|
endsnippet
|
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
snippet it "Individual item" b
|
2017-11-24 08:54:40 -05:00
|
|
|
\item $0
|
2014-03-11 16:10:50 -04:00
|
|
|
endsnippet
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
snippet part "Part" b
|
|
|
|
\part{${1:part name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{prt:${2:${1/(\w+)|\W+/(?1:\L$0\E:_)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet cha "Chapter" b
|
|
|
|
\chapter{${1:chapter name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{cha:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet sec "Section" b
|
2014-03-02 09:35:00 -05:00
|
|
|
\section{${1:section name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{sec:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2017-05-02 08:42:08 -04:00
|
|
|
snippet sec* "Section" b
|
|
|
|
\section*{${1:section name}}
|
|
|
|
\label{sec:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
|
|
|
|
|
|
|
${0}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet sub "Subsection" b
|
|
|
|
\subsection{${1:subsection name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{sub:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2017-05-02 08:42:08 -04:00
|
|
|
snippet sub* "Subsection" b
|
|
|
|
\subsection*{${1:subsection name}}
|
|
|
|
\label{sub:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
|
|
|
|
|
|
|
${0}
|
|
|
|
endsnippet
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet ssub "Subsubsection" b
|
|
|
|
\subsubsection{${1:subsubsection name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{ssub:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2017-05-02 08:42:08 -04:00
|
|
|
snippet ssub* "Subsubsection" b
|
|
|
|
\subsubsection*{${1:subsubsection name}}
|
|
|
|
\label{ssub:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
|
|
|
|
|
|
|
${0}
|
|
|
|
endsnippet
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet par "Paragraph" b
|
|
|
|
\paragraph{${1:paragraph name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{par:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet subp "Subparagraph" b
|
|
|
|
\subparagraph{${1:subparagraph name}}
|
2014-03-11 16:10:50 -04:00
|
|
|
\label{par:${2:${1/\\\w+\{(.*?)\}|\\(.)|(\w+)|([^\w\\]+)/(?4:_:\L$1$2$3\E)/ga}}}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2014-03-11 16:10:50 -04:00
|
|
|
endsnippet
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
snippet ni "Non-indented paragraph" b
|
|
|
|
\noindent
|
2017-02-11 08:01:38 -05:00
|
|
|
$0
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
snippet pac "Package" b
|
2017-05-02 08:42:08 -04:00
|
|
|
\usepackage`!p snip.rv='[' if t[1] else ""`${1:options}`!p snip.rv = ']' if t[1] else ""`{${2:package}}$0
|
2014-03-11 16:10:50 -04:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet lp "Long parenthesis"
|
|
|
|
\left(${1:${VISUAL:contents}}\right)$0
|
|
|
|
endsnippet
|
2017-11-24 08:54:40 -05:00
|
|
|
|
|
|
|
snippet "mint(ed)?( (\S+))?" "Minted code typeset" br
|
|
|
|
\begin{minted}{${1:`!p
|
|
|
|
snip.rv = match.group(3) if match.group(2) is not None else "language"`}}
|
|
|
|
${2:${VISUAL:code}}
|
|
|
|
\end{minted}$0
|
|
|
|
endsnippet
|
2012-08-16 23:41:25 -04:00
|
|
|
# vim:ft=snippets:
|