blob: f8bf5df08f16c4cc6fb731031878fc8433860edf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
:: Copyright (c) 2012-2018 hzz
@echo off
title %date% %time% makefile
:: compile the tex file
del /q *.aux *.bbl *.blg *.log *.out *.toc *.bcf *.xml *.synctex *.nlo *.nls *.bak *.ind *.idx *.ilg *.lof *.lot *.ent-x *.tmp *.ltx *.los *.lol *.loc *.listing *.gz *.synctex(busy)
del /q *.nav *.snm *.vrb *.fls *.xdv *.fdb_latexmk
::pause
echo biblatex-gb7714-2015.tex >> example/makerecord.dat
xelatex.exe --synctex=-1 biblatex-gb7714-2015.tex
biber biblatex-gb7714-2015
xelatex.exe --synctex=-1 biblatex-gb7714-2015.tex
::to do it again for backref
xelatex.exe --synctex=-1 biblatex-gb7714-2015.tex
:: clear aux files
::call makeclear
|