Skip to content

Commit

Permalink
Improvement LaTeX output (regression)
Browse files Browse the repository at this point in the history
Regression on pull request #698.
We shouldn't switch to pdflatex for formula generation (follow up procedure: dvips and gs / splitting into images does not work).
In the travis tests this was shown as well but not flagged as an error.
  • Loading branch information
albert-github committed Jun 5, 2018
1 parent 2899a2d commit 4c7ed90
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/formula.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "util.h"
#include "message.h"
#include "config.h"
#include "language.h"
#include "portable.h"
#include "index.h"
#include "doxygen.h"
Expand Down Expand Up @@ -97,7 +96,7 @@ void FormulaList::generateBitmaps(const char *path)
{
//printf("Running latex...\n");
//system("latex _formulas.tex </dev/null >/dev/null");
QCString latexCmd = theTranslator->latexCommandName();
QCString latexCmd = "latex";
portable_sysTimerStart();
if (portable_system(latexCmd,"_formulas.tex")!=0)
{
Expand Down

0 comments on commit 4c7ed90

Please sign in to comment.