summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh')
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh b/Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh
new file mode 100644
index 00000000000..ff20b262b0a
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/biblatex-gb7714-2015/example/makefileeg.sh
@@ -0,0 +1,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
+
+