Compare commits

...

4 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ This directory contains the LaTeX setup for Isabelle's
document generation system.
## Tipps
## Tips and Tricks
During debugging of LaTeX errors, it can be very helpful to use
more than 79 characters for error messages (otherwise, long errors

View File

@ -92,7 +92,7 @@ TEMPLATE=""
ONTOLOGY="core"
CONFIG="isadof.cfg"
while IFS= read -r line;do
fields=($(printf "%s" "$line"|cut -d':' --output-delimiter=' ' -f1-))
fields=($(printf "%s" "$line"|cut -d':' -f1- | tr ':' ' '))
if [[ "${fields[0]}" = "Template" ]]; then
TEMPLATE="${fields[1]}"
fi