src/Doc/prepare_document
author wenzelm
Wed, 19 May 2021 12:53:51 +0200
changeset 73742 c31510e70e95
parent 73740 c46ff0efa1ce
permissions -rwxr-xr-x
proper bibliography;

#!/usr/bin/env bash

set -e

$ISABELLE_LUALATEX root

if [ -f manual.bib -o -f root.bib ]
then
  $ISABELLE_BIBTEX root
  $ISABELLE_LUALATEX root
fi

$ISABELLE_LUALATEX root

if [ -f root.idx ]
then
  "$ISABELLE_HOME/src/Doc/sedindex" root
  $ISABELLE_LUALATEX root
fi