mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Update documentation for 'amsmath' key in latex_elements
This commit is contained in:
parent
401302df48
commit
c5824bd1cd
@ -1633,6 +1633,17 @@ These options influence LaTeX output.
|
||||
.. versionadded:: 1.2
|
||||
``'fontenc'``
|
||||
"fontenc" package inclusion, default ``'\\usepackage[T1]{fontenc}'``.
|
||||
``'amsmath'``
|
||||
"amsmath" package inclusion, default ``'\\usepackage{amsmath,amssymb}'``.
|
||||
|
||||
.. versionadded:: 1.4
|
||||
Override if conflicts arise with math font packages
|
||||
(note: package ``amsfonts`` is loaded by ``amssymb``.)
|
||||
|
||||
|
||||
.. versionchanged:: 1.4.3
|
||||
Package ``amstext`` is always loaded (for its ``\text`` macro,
|
||||
among others), independently of this key value.
|
||||
``'maketitle'``
|
||||
"maketitle" call, default ``'\\maketitle'``. Override if you want to
|
||||
generate a differently-styled title page.
|
||||
|
@ -307,7 +307,7 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
||||
'\\fi'),
|
||||
'cmappkg': '\\usepackage{cmap}',
|
||||
'fontenc': '\\usepackage[T1]{fontenc}',
|
||||
'amsmath': '\\usepackage{amsmath,amssymb,amstext}',
|
||||
'amsmath': '\\usepackage{amsmath,amssymb}',
|
||||
'babel': '\\usepackage{babel}',
|
||||
'fontpkg': '\\usepackage{times}',
|
||||
'fncychap': '\\usepackage[Bjarne]{fncychap}',
|
||||
|
Loading…
Reference in New Issue
Block a user