equal
deleted
inserted
replaced
|
1 #!/bin/bash |
|
2 |
|
3 set -e |
|
4 |
|
5 FORMAT="$1" |
|
6 VARIANT="$2" |
|
7 |
|
8 "$ISABELLE_TOOL" logo -o isabelle_isar.pdf Isar |
|
9 "$ISABELLE_TOOL" logo -o isabelle_isar.eps Isar |
|
10 |
|
11 cp "$ISABELLE_HOME/doc-src/iman.sty" . |
|
12 cp "$ISABELLE_HOME/doc-src/extra.sty" . |
|
13 cp "$ISABELLE_HOME/doc-src/isar.sty" . |
|
14 cp "$ISABELLE_HOME/doc-src/proof.sty" . |
|
15 cp "$ISABELLE_HOME/doc-src/manual.bib" . |
|
16 |
|
17 "$ISABELLE_TOOL" latex -o sty |
|
18 "$ISABELLE_TOOL" latex -o "$FORMAT" |
|
19 "$ISABELLE_TOOL" latex -o bbl |
|
20 "$ISABELLE_TOOL" latex -o "$FORMAT" |
|
21 "$ISABELLE_TOOL" latex -o "$FORMAT" |
|
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" |