Skip to content

Commit 2a41dea

Browse files
committed
issue #8604 LATEX_BATCHMODE not used for formulas anymore
The `LATEX_BATCHMODE` setting is not used anymore for formulas since: ``` Commit: 10b2b8f [10b2b8f] Date: Wednesday, February 12, 2020 9:08:11 PM Improve formula handling and rendering. ``` but there were still references in the formulas code and in the documentation.
1 parent 7d92c9c commit 2a41dea

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/config.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3010,8 +3010,7 @@ The following block name is set based on whether or not a feature is used in the
30103010
If the \c LATEX_BATCHMODE tag is set to \c YES, doxygen will add the \c \\batchmode
30113011
command to the generated \f$\mbox{\LaTeX}\f$ files. This will
30123012
instruct \f$\mbox{\LaTeX}\f$ to keep running if errors occur, instead of
3013-
asking the user for help. This option is also used when generating formulas
3014-
in HTML.
3013+
asking the user for help.
30153014
]]>
30163015
</docs>
30173016
</option>

src/formula.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ void FormulaManager::generateImages(const QCString &path,Format format,HighDPI h
155155
if (f.is_open())
156156
{
157157
TextStream t(&f);
158-
if (Config_getBool(LATEX_BATCHMODE)) t << "\\batchmode\n";
159158
t << "\\documentclass{article}\n";
160159
t << "\\usepackage{ifthen}\n";
161160
t << "\\usepackage{epsfig}\n"; // for those who want to include images

0 commit comments

Comments
 (0)