Skip to main content

Sphinx extensions for working with LaTeX math

Project description

texext contains a couple of Sphinx extensions for working with LaTeX math.

math_dollar

math_dollar replaces math expressions between dollars in ReST with equivalent inline math.

For example:

Here is some math: $a = 2$

will be replaced by:

Here is some math: :math:`a = 2`

The extension makes some effort not to replace dollars that aren’t meant as math, but please check your output carefully, and submit an issue on the texext issue tracker if we have messed up.

To enable math_dollar, make sure that the texext package is on your Python path, and add textext.math_dollar to your list of extensions in the Sphinx conf.py. If you want math_dollar to process docstrings, you should add sphinx.ext.autodoc higher up your extensions list than math_dollar.

mathcode directive

Users of sympy may want to generate LaTeX expressions dynamically in Sympy, and then render them in LaTeX in the built pages. You can do this with the mathcode directive:

.. mathcode::

    import sympy
    a, b = sympy.symbols('a, b')
    a * 10 + 2 * b

The directive runs sympy.latex() on the return result of the final expression, and embeds it in a .. math:: directive, resulting in equivalent output to sphinx of:

.. math::

    10 a + 2 b

Context (namespace) is preserved by default, so you can use context in subsequent directives, e.g.:

.. mathcode::

    a * 5 + 3 * b

If the last expression in the mathcode block is not an expression, the context gets updated, but the extension generates no math directive to the output. This allows you to have blocks that fill in calculations without rendering to the page. For example, this generates no output:

.. mathcode::

    expr = a * 4

You can use the generated context in a later directive:

.. mathcode::

    expr

To reset the context (namespace), use the newcontext option:

.. mathcode::
    :newcontext:

    import sympy  # again

If you would like mathcode to share a namespace with the matplotlib plot_directive, set the following in your conf.py:

# Config of mathcode directive
mathcode_use_plot_ns = True

Remember that, by default, the plot_directive will clear the namespace context for each directive, so you may want to use the :context: option to the plot directive, most of the time.

If you want to use a customized version of the plot_directive, supply the plot_directive module yourself, in the conf.py file:

# Config of mathcode directive
from my_path import plot_directive
mathcode_plot_directive = plot_directive

To enable the mathcode directive, make sure that the texext package is on your Python path, and add textext.mathcode to your list of extensions in the Sphinx conf.py.

Code

See https://github.com/matthew-brett/texext

Released under the BSD two-clause license - see the file LICENSE in the source distribution.

travis-ci kindly tests the code automatically under Python versions 2.6 through 2.7, and 3.2 through 3.5.

The latest released version is at https://pypi-hypernode.com/pypi/texext

Support

Please put up issues on the texext issue tracker.

Project details


Download files

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

Source Distributions

texext-0.2.zip (50.6 kB view details)

Uploaded Source

texext-0.2.tar.gz (38.3 kB view details)

Uploaded Source

File details

Details for the file texext-0.2.zip.

File metadata

  • Download URL: texext-0.2.zip
  • Upload date:
  • Size: 50.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for texext-0.2.zip
Algorithm Hash digest
SHA256 8ed1dde8caed4cacf73f82aa1120dadf1a13ecd789ca4f3d5d8e48b8309ade86
MD5 a7fb5ee13599409eff39c6dffdf0a5bf
BLAKE2b-256 65f3202dd2aa388029b8313cacbdf28cbe56530253b5cc306b20a64845d0a6dc

See more details on using hashes here.

File details

Details for the file texext-0.2.tar.gz.

File metadata

  • Download URL: texext-0.2.tar.gz
  • Upload date:
  • Size: 38.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for texext-0.2.tar.gz
Algorithm Hash digest
SHA256 b4765f2529a32d960df8e59f0051233554f0800db18f5271280f13b749f5a6ce
MD5 6da24b8d9172d971d0cd7b41a6d2d4a0
BLAKE2b-256 70f9812311447817f280035553aeaf7c6c28d5f0f4788fafa3ebb6056f80b0f3

See more details on using hashes here.

Supported by

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