Merge pull request #6 from fmsyWsniEu/master
Use lualatex as it is capable to handle larger documents
This commit is contained in:
@@ -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.");
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user