diff options
author | albert-github <albert.tests@gmail.com> | 2014-11-29 14:31:57 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-11-29 14:31:57 (GMT) |
commit | fd91442bcc5a20ba298a024ee2cc375ec4f1714d (patch) | |
tree | 64bf2ef54067018960ed07cde8a3b363b1e36498 /src/latexgen.h | |
parent | 200b828ead9f6bb5b2f6f99919837d5828a250e4 (diff) | |
download | Doxygen-fd91442bcc5a20ba298a024ee2cc375ec4f1714d.zip Doxygen-fd91442bcc5a20ba298a024ee2cc375ec4f1714d.tar.gz Doxygen-fd91442bcc5a20ba298a024ee2cc375ec4f1714d.tar.bz2 |
Bug 687576 - Add support for LATEX_EXTRA_STYLESHEET
Added the possibility for LATEX_EXTRA_STYLESHEET analogous to HTML_EXTRA_STYLESHEET. Special attention has been paid to the extension as ".sty" is automatically added by the \usepackage
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index f68612d..60c649a 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -22,6 +22,8 @@ class QFile; +static const char *latexStyleExtension = ".sty"; + /** Generator for LaTeX output. */ class LatexGenerator : public OutputGenerator { |