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

9 lines
125 B
Text

snippet latex
TEX := $(wildcard *.tex)
$1.pdf: ${TEX}
pdflatex -jobname=$1 $^
clean:
rm -rf *.aux *.log *.pdf
endsnippet