| author | wenzelm | 
| Mon, 19 Jan 2015 11:37:53 +0100 | |
| changeset 59405 | 4a0b34ef0563 | 
| parent 53498 | 05313b45a5ae | 
| child 62589 | b5783412bfed | 
| permissions | -rwxr-xr-x | 
| 53498 | 1 | #!/usr/bin/env bash | 
| 48971 | 2 | |
| 3 | set -e | |
| 4 | ||
| 5 | FORMAT="$1" | |
| 6 | ||
| 7 | "$ISABELLE_TOOL" latex -o sty | |
| 48985 | 8 | cp "$ISABELLE_HOME/src/Doc/pdfsetup.sty" . | 
| 48971 | 9 | |
| 10 | "$ISABELLE_TOOL" latex -o "$FORMAT" | |
| 11 | "$ISABELLE_TOOL" latex -o bbl | |
| 48985 | 12 | [ -f root.idx ] && "$ISABELLE_HOME/src/Doc/sedindex" root | 
| 48971 | 13 | "$ISABELLE_TOOL" latex -o "$FORMAT" | 
| 48985 | 14 | [ -f root.out ] && "$ISABELLE_HOME/src/Doc/fixbookmarks" root.out | 
| 48971 | 15 | "$ISABELLE_TOOL" latex -o "$FORMAT" | 
| 16 |