clarified command-line options;
authorwenzelm
Tue, 18 May 2021 16:15:19 +0200
changeset 73727 2574de12ad29
parent 73726 aa7662e475b6
child 73728 dfc7579aae9d
clarified command-line options;
etc/settings
lib/Tools/latex
--- a/etc/settings	Tue May 18 16:01:01 2021 +0200
+++ b/etc/settings	Tue May 18 16:15:19 2021 +0200
@@ -65,12 +65,12 @@
 ###
 
 if [ "$ISABELLE_PLATFORM_FAMILY" = "windows" ]; then
-  ISABELLE_PDFLATEX="pdflatex -c-style-errors"
+  ISABELLE_PDFLATEX="pdflatex -interaction=nonstopmode -c-style-errors"
 else
-  ISABELLE_PDFLATEX="pdflatex -file-line-error"
+  ISABELLE_PDFLATEX="pdflatex -interaction=nonstopmode -file-line-error"
 fi
 
-ISABELLE_LUALATEX="lualatex --file-line-error"
+ISABELLE_LUALATEX="lualatex --interaction=nonstopmode --file-line-error"
 ISABELLE_BIBTEX="bibtex"
 ISABELLE_MAKEINDEX="makeindex"
 ISABELLE_EPSTOPDF="epstopdf"
--- a/lib/Tools/latex	Tue May 18 16:01:01 2021 +0200
+++ b/lib/Tools/latex	Tue May 18 16:15:19 2021 +0200
@@ -70,7 +70,7 @@
 
 # operations
 
-function run_pdflatex () { $ISABELLE_PDFLATEX "\\nonstopmode\\input{$FILEBASE.tex}"; }
+function run_pdflatex () { $ISABELLE_PDFLATEX "$FILEBASE.tex"; }
 function run_bibtex () {
   $ISABELLE_BIBTEX </dev/null "$FILEBASE"
   RC="$?"