more snippets

This commit is contained in:
Jidbo 2019-08-12 00:14:52 +02:00
parent 6a1d20d0a9
commit 21a51fe9a3
2 changed files with 41 additions and 1 deletions

View file

@ -2,3 +2,7 @@ extends html
snippet ref "Markdown Link"
[$1]({${2:https://$3}${4: "$5"})$0
endsnippet
snippet cod "Code Block"
\`$1\`$0
endsnippet

View file

@ -38,6 +38,14 @@ snippet sum "Sum character"
\sum_\{${1:lower}\}^\{${2:upper}\} $0
endsnippet
snippet int "integral character"
\int_\{${1:lower}\}^\{${2:upper}\} $0
endsnippet
snippet dx "dx sign" i
\mathrm{d}x$0
endsnippet
snippet ^ "Superscript" i
^{$1}$0
endsnippet
@ -60,6 +68,12 @@ snippet beg "Begin"
\end{$1}
endsnippet
snippet ali "align"
\begin{align*}
$0
\end{align*}
endsnippet
snippet sec "Section"
\section{$1}
$0
@ -70,10 +84,14 @@ snippet secs "Subsection"
$0
endsnippet
snippet fat "Emphasize Text"
snippet emp "Emphasize Text"
\emph{$1}$0
endsnippet
snippet fat "Fat Print Text"
\textbf{$1}$0
endsnippet
snippet secss "Subsubsection"
\subsubsection{$1}
$0
@ -99,3 +117,21 @@ $0
\end{document}
endsnippet
# Sqeuenzkalküle
snippet axi "Axiome"
\AxiomC{\$ $1 \$}$0
endsnippet
snippet rla "Right Label"
\RightLabel{\$ $1 \$}$0
endsnippet
snippet uin "Unary Inf"
\UnaryInfC{\$ $1 \$}$0
endsnippet
snippet bin "Binary Inf"
\BinaryInfC{\$ $1 \$}$0
endsnippet