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.
12 lines
298 B
12 lines
298 B
@echo off
|
|
echo Compiling...
|
|
latexmk -xelatex -shell-escape --halt-on-error -silent instructions >nul 2>nul
|
|
echo Done!
|
|
|
|
echo Clean files...
|
|
latexmk -c -silent 2>nul
|
|
del instructions.listing >nul 2>nul
|
|
del instructions.xdv >nul 2>nul
|
|
rmdir /S /Q _minted-instructions >nul 2>nul
|
|
echo Done!
|