Use lualatex as it is capable to handle larger documents

This commit is contained in:
Friedrich Schwittay
2016-04-30 16:54:02 +02:00
parent 5c112fe278
commit 7540ad65d6
2 changed files with 3 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ public class HelpOutput {
System.err
.println("-tablescale <factor> Scale factor to specify width of tables. Default value is 0.9.");
System.err
.println("-createpdf Creates .pdf file from the .tex output file by using pdflatex tool.");
.println("-createpdf Creates .pdf file from the .tex output file by using 'lualatex --output-format=pdf' tool.");
System.err.println("-packageorder <pkg1>,<pkg2>,...");
System.err
.println(" Use a specific package order.");

View File

@@ -183,7 +183,7 @@ import com.sun.javadoc.Type;
@SuppressWarnings("restriction")
public class TeXDoclet extends Doclet {
private static final String PDFLATEX_CMD = "pdflatex -interaction=nonstopmode ";
private static final String PDFLATEX_CMD = "lualatex --interaction=nonstopmode --output-format=pdf ";
private static final int PDFLATEX_ITERATIONS = 2;
private static final String OUT_FILENAME_DOCS_TEX = "docs.tex";
@@ -2364,4 +2364,4 @@ public class TeXDoclet extends Doclet {
System.out.println("return code : " + res);
return res;
}
}
}