added flag to pdflatex command to fix endless loading bug
This commit is contained in:
parent
116a681ca9
commit
704d71dd75
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class TeXUtil {
|
|||
}
|
||||
|
||||
// Run pdflatex to generate the .pdf file
|
||||
String command = "pdflatex -output-directory=" + tempDir.getAbsolutePath() + " " + texFile.getAbsolutePath();
|
||||
String command = "pdflatex -interaction=nonstopmode -output-directory=" + tempDir.getAbsolutePath() + " " + texFile.getAbsolutePath();
|
||||
Process process = Runtime.getRuntime().exec(command);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue