Skip to content

Commit

Permalink
Bug 659590 - EXTRA_PACKAGES can't handle package options
Browse files Browse the repository at this point in the history
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>])
  • Loading branch information
albert-github committed Mar 4, 2015
1 parent 5e5615a commit ad53cba
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/config.xml
Expand Up @@ -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.
]]>
Expand Down

0 comments on commit ad53cba

Please sign in to comment.