summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh
blob: ff20b262b0a50418447fab4486168f2860901993 (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
#!/bin/bash

export PATH=${PATH}:/usr/local/texlive/2016/bin/x86_64-linux

if [-e gb7714-2015.bbx] ; then
	cp ../*.bbx .
	cp ../*.cbx .
fi


for egfile in eg*.tex;
do 
./makeclear.sh
echo "$egfile"
echo "${egfile%.tex}"
xelatex --synctex=-1 "$egfile"
biber "${egfile%.tex}"
xelatex --synctex=-1 "$egfile"
./makeclear.sh;
done

rm *.bbx
rm *.cbx