dotfiles.pub/_config/nvim/UltiSnips/plaintex.snippets
2025-09-06 16:27:50 +02:00

31 lines
568 B
Text

snippet doc
\documentclass[a4paper]{article}
\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
$0
\end{document}
endsnippet
snippet begin
\begin{$1}
$0
\end{$1}
endsnippet
snippet code
{\ttfamily $1}
endsnippet
snippet color
{\color{$1} $2}
endsnippet
snippet table
\begin{tabular}{ $1 }
$2 & $3 & cell3 \\\\
cell4 & cell5 \\\\
\end{tabular}
endsnippet