vim: Add table environment to TeX UltiSnips
This commit is contained in:
parent
7017288c58
commit
74f32e1e14
1 changed files with 11 additions and 0 deletions
|
@ -38,6 +38,17 @@ snippet fgg "Figure with label" bA
|
||||||
\end{figure}
|
\end{figure}
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet tbl "Table with label" bA
|
||||||
|
\begin{table}${1:[$2]}
|
||||||
|
\centering
|
||||||
|
\begin{tabular}${3:\{$4\}}
|
||||||
|
$5
|
||||||
|
\end{tabular}
|
||||||
|
${6:\caption{$7}
|
||||||
|
\label{$8}}
|
||||||
|
\end{table}
|
||||||
|
endsnippet
|
||||||
|
|
||||||
# snippet nn "Equation environment with suppressed numbering" bA
|
# snippet nn "Equation environment with suppressed numbering" bA
|
||||||
# \begin{equation*}
|
# \begin{equation*}
|
||||||
# $1
|
# $1
|
||||||
|
|
Loading…
Add table
Reference in a new issue