536
|
1 |
#!/bin/bash
|
|
2 |
|
|
3 |
set -e
|
|
4 |
|
|
5 |
FORMAT="$1"
|
|
6 |
VARIANT="$2"
|
|
7 |
|
|
8 |
hg parent --template '{date|shortdate}' > tip.tex
|
|
9 |
|
|
10 |
"$ISABELLE_TOOL" version > version.tex
|
|
11 |
|
|
12 |
"$ISABELLE_TOOL" latex -o "$FORMAT"
|
537
|
13 |
"$ISABELLE_TOOL" latex -o "$FORMAT"
|
536
|
14 |
"$ISABELLE_TOOL" latex -o bbl
|
|
15 |
makeindex -o root.stu root.str
|
|
16 |
"$ISABELLE_TOOL" latex -o "$FORMAT"
|
|
17 |
"$ISABELLE_TOOL" latex -o "$FORMAT"
|
537
|
18 |
cp root.pdf ../document.pdf
|
536
|
19 |
mv root.pdf ../progtutorial.pdf
|
|
20 |
|
|
21 |
|
|
22 |
#"$ISABELLE_HOME/doc-src/sedindex" root
|
|
23 |
#+[ -f root.out ] && "$ISABELLE_HOME/doc-src/fixbookmarks" root.out
|
|
24 |
#+"$ISABELLE_TOOL" latex -o "$FORMAT"
|
|
25 |
#+"$ISABELLE_TOOL" latex -o "$FORMAT"
|
|
26 |
#$(ISABELLE_TOOL) document -o pdf ProgTutorial/generated
|
|
27 |
# makeindex -o ProgTutorial/generated/root.stu ProgTutorial/generated/root.str |