Skip to main content

Sphinx extension to let you write LaTeX math using $$

Project description

sphinx-math-dollar is a Sphinx extension to let you write LaTeX math in RST using $$.

To enable install it

pip install sphinx-math-dollar

or

conda install -c conda-forge sphinx-math-dollar

Then in your conf.py, add 'sphinx_math_dollar' to your extensions list:

extensions = ['sphinx_math_dollar', 'sphinx.ext.mathjax']

mathjax_config = {
    'tex2jax': {
        'inlineMath': [ ["\\(","\\)"] ],
        'displayMath': [["\\[","\\]"] ],
    },
}

mathjax3_config = {
  "tex": {
    "inlineMath": [['\\(', '\\)']],
    "displayMath": [["\\[", "\\]"]],
  }
}

The mathjax_config is needed to prevent MathJax from parsing dollar signs which are ignored by the extension because they should not be parsed as math.

You will now be able to use dollar signs for math, like $\int\sin(x)\,dx$, which will produce $intsin(x),dx$. You can also use double dollar signs for display math, like $$\int\sin(x)\,dx$$, which produces $$intsin(x),dx$$ (if you are reading this on GitHub, look at the version built by Sphinx here). The usual Sphinx :math: and .. math:: directives will also continue to work.

The extension will also work with docstrings when combined with the sphinx.ext.autodoc extension.

Configuration

sphinx-math-dollar uses a blacklist to determine which docutils nodes should not be parsed. The default blacklist is

(FixedTextElement, literal, math)

FixedTextElement covers the Simple Body Elements nodes.

Any docutils node that is contained in a blacklisted node or a subclass of a blacklisted node will not have $math$ parsed as LaTeX.

You can modify this by setting math_dollar_node_blacklist in conf.py. For example, to also prevent $math$ from rendering in headers nodes, add

from sphinx_math_dollar import NODE_BLACKLIST
from docutils.nodes import header

math_dollar_node_blacklist = NODE_BLACKLIST + (header,)

Note that configuring this variable replaces the default, so it is recommended to always include the above default values (NODE_BLACKLIST) in addition to additional nodes.

To debug which nodes are skipped, set the environment variable MATH_DOLLAR_DEBUG=1 or set math_dollar_debug = True in conf.py.

If you feel a node should always be part of the default blacklist, please make a pull request.

Known Issues

See the issue tracker for a full list of known issues.

  • Absolute values can produce errors like Inline substitution_reference start-string without end-string.. See issue #16.

    This is because Sphinx parses the vertical bars |x| as inline substitutions. To work around this, add spaces around the absolute value bars, like 1 + | x | + y. If an absolute value bar is at the beginning or end of the math expression, use curly braces (to avoid false positives, sphinx-math-dollar will not parse dollar signs as math if there is a space after the first $ or before the last $). For example, replace $|y| \geq |x^e|$ with ${ | y | \geq | x^e | }$, which produces ${ | y | geq | x^e | }$.

Markdown

sphinx-math-dollar is designed to work with RST, which does not natively support dollar signs for LaTeX math. If you prefer Markdown, we recommend using [MyST](https://myst-parser.readthedocs.io/en/latest/), which natively supports dollar math (this extension is not required).

License

MIT.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sphinx_math_dollar-1.3.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sphinx_math_dollar-1.3-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file sphinx_math_dollar-1.3.tar.gz.

File metadata

  • Download URL: sphinx_math_dollar-1.3.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for sphinx_math_dollar-1.3.tar.gz
Algorithm Hash digest
SHA256 9e18e9ed398c9e556eab74eef9333f7a0b39a8c176988b61aedecd085336a20f
MD5 8c466dd5eba533b0f2823e189cb4e00f
BLAKE2b-256 b113beff9449bf32affac2cecac33962bc799344fe960c2c49f570ed66361952

See more details on using hashes here.

File details

Details for the file sphinx_math_dollar-1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for sphinx_math_dollar-1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 85211b21a547cdce97a684a0c91936efded7b30a2e142de2dd89124e4ba8e34f
MD5 3b12c355c93fb375b6a36bf125a9957f
BLAKE2b-256 b1090ab0853d6d634455fe70d90a306162160ead7592eceaca194168a16d3beb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page