Add proof-related yasnippets

This commit is contained in:
tecosaur 2020-03-18 01:16:39 +08:00
parent 9ec41860a9
commit 905ccfd632
5 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: corollary
# uuid: corollary
# key: cor
# condition: t
# --
\begin{corollary}${1:[${2:name}]}
$0
\end{corollary}

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: definition
# uuid: definition
# key: def
# condition: t
# --
\begin{definition}${1:[${2:name}]}
$0
\end{definition}

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: lemma
# uuid: lemma
# key: lem
# condition: t
# --
\begin{lemma}${1:[${2:name}]}
$0
\end{lemma}

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: proof
# uuid: proof
# key: prf
# condition: t
# --
\begin{proof}${1:[${2:name}]}
$0
\end{proof}

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: theorem
# uuid: theorem
# key: thm
# condition: t
# --
\begin{theorem}${1:[${2:name}]}
$0
\end{theorem}