vim: Add table environment to TeX UltiSnips

This commit is contained in:
Petar Kapriš 2025-09-29 20:33:37 +02:00
parent 7017288c58
commit 74f32e1e14

View file

@ -38,6 +38,17 @@ snippet fgg "Figure with label" bA
\end{figure}
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
# \begin{equation*}
# $1