dotfiles/vim/.vim/UltiSnips/tex.snippets
2024-01-06 18:04:23 +01:00

20 lines
330 B
Plaintext

snippet base "Description" b
\documentclass{${1:${VISUAL:article}}}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{amsmath, amsfonts, amssymb, amsthm}
\title{${2:${VISUAL:Titre}}}
\author{${3:${VISUAL:Debucquoy Anthony}}}
\begin{document}
\maketitle
$0
\end{document}
endsnippet