remove nonstopmode from bibtex
This commit is contained in:
parent
ded0ab482a
commit
789fda9c98
@ -54,7 +54,7 @@ public class LatexService {
|
|||||||
|
|
||||||
private boolean generate(String filename, File dir) throws IOException, InterruptedException {
|
private boolean generate(String filename, File dir) throws IOException, InterruptedException {
|
||||||
startProcess(new String[]{"pdflatex", filename, "--interaction=nonstopmode"}, dir, pdfLatexError);
|
startProcess(new String[]{"pdflatex", filename, "--interaction=nonstopmode"}, dir, pdfLatexError);
|
||||||
startProcess(new String[]{"bibtex", filename, "--interaction=nonstopmode"}, dir, bibtexError);
|
startProcess(new String[]{"bibtex", filename}, dir, bibtexError);
|
||||||
if (startProcess(new String[]{"pdflatex", filename, "--interaction=nonstopmode"}, dir, pdfLatexError) != 0)
|
if (startProcess(new String[]{"pdflatex", filename, "--interaction=nonstopmode"}, dir, pdfLatexError) != 0)
|
||||||
return false;
|
return false;
|
||||||
return checkPdf(filename, dir);
|
return checkPdf(filename, dir);
|
||||||
|
Loading…
Reference in New Issue
Block a user