dotfiles/vim/.vim/UltiSnips/tex.snippets

20 lines
330 B
Plaintext
Raw Normal View History

2023-11-02 10:11:39 +01:00
snippet base "Description" b
\documentclass{${1:${VISUAL:article}}}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{amsmath, amsfonts, amssymb, amsthm}
2024-01-06 18:02:00 +01:00
\title{${2:${VISUAL:Titre}}}
\author{${3:${VISUAL:Debucquoy Anthony}}}
2023-11-02 10:11:39 +01:00
\begin{document}
2024-01-06 18:02:00 +01:00
\maketitle
2023-11-02 10:11:39 +01:00
$0
\end{document}
endsnippet