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
|
System.err
|
||||||
.println("-tablescale <factor> Scale factor to specify width of tables. Default value is 0.9.");
|
.println("-tablescale <factor> Scale factor to specify width of tables. Default value is 0.9.");
|
||||||
System.err
|
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("-packageorder <pkg1>,<pkg2>,...");
|
||||||
System.err
|
System.err
|
||||||
.println(" Use a specific package order.");
|
.println(" Use a specific package order.");
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ import com.sun.javadoc.Type;
|
|||||||
@SuppressWarnings("restriction")
|
@SuppressWarnings("restriction")
|
||||||
public class TeXDoclet extends Doclet {
|
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 int PDFLATEX_ITERATIONS = 2;
|
||||||
|
|
||||||
private static final String OUT_FILENAME_DOCS_TEX = "docs.tex";
|
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);
|
System.out.println("return code : " + res);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user