summaryrefslogtreecommitdiffstats
path: root/src/config.xml
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-03-04 17:58:55 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-03-04 17:58:55 (GMT)
commitad53cbab6474e11692f2ca1018a821d042df28e6 (patch)
tree8acc5c05348b9f59329f4ec17ce257f508e6fefa /src/config.xml
parent5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (diff)
downloadDoxygen-ad53cbab6474e11692f2ca1018a821d042df28e6.zip
Doxygen-ad53cbab6474e11692f2ca1018a821d042df28e6.tar.gz
Doxygen-ad53cbab6474e11692f2ca1018a821d042df28e6.tar.bz2
Bug 659590 - EXTRA_PACKAGES can't handle package options
Create the possibility to specify options with the EXTRA_PACKAGES command. It is possible to specify the package by just its name or in the syntax as required by the LaTeX \usepackage command ([<package-option-list>]{<package-list>}[<version>])
Diffstat (limited to 'src/config.xml')
-rw-r--r--src/config.xml15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/config.xml b/src/config.xml
index 726183c..92da3ca 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -2492,10 +2492,19 @@ EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
<docs>
<![CDATA[
The \c EXTRA_PACKAGES tag can be used to specify one or more \f$\mbox{\LaTeX}\f$
- package names that should be included in the \f$\mbox{\LaTeX}\f$ output.
- To get the times font for instance you can specify
+ package names that should be included in the \f$\mbox{\LaTeX}\f$ output. The package
+ can be specified just by its name or with the correct syntax as to be used with the
+ \f$\mbox{\LaTeX}\f$ `\usepackage` command.
+
+ To get the `times` font for instance you can specify :
+\verbatim
+ EXTRA_PACKAGES=times
+or
+ EXTRA_PACKAGES={times}
+\endverbatim
+ To use the option `intlimits` with the `amsmath` package you can specify:
\verbatim
-EXTRA_PACKAGES=times
+ EXTRA_PACKAGES=[intlimits]{amsmath}
\endverbatim
If left blank no extra packages will be included.
]]>