You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
291 B

@echo off
echo Compiling...
latexmk -xelatex -shell-escape --halt-on-error -silent demo >nul 2>nul
echo Done!
echo Clean files...
latexmk -c -silent 2>nul
del demo.listing >nul 2>nul
del demo.xdv >nul 2>nul
del demo.bbl >nul 2>nul
rmdir /S /Q _minted-demo >nul 2>nul
echo Done!