A `Sphinx extension`_ for rendering math in HTML pages.
Project description
The extension uses KaTeX for rendering of math in HTML pages. It is designed as a replacement for the built-in extension sphinx.ext.mathjax, which uses MathJax for rendering.
Download: https://pypi-hypernode.com/pypi/sphinxcontrib-katex/#downloads
Development: https://github.com/hagenw/sphinxcontrib-katex/
Usage
Installation:
pip install sphinxcontrib-katex
In conf.py of your sphinx project, add the extension with:
extensions = [
'sphinxcontrib.katex',
]
Configuration
The behavior of the sphinxcontrib.katex can be changed by configuration entries in the conf.py file of your documentation project. In the following all configuration entries are listed and their default values are shown.
katex_version = 0.9
katex_css_path = 'https://cdn.jsdelivr.net/npm/katex@' + \
katex_version + \
'/dist/katex.min.css'
katex_js_path = 'https://cdn.jsdelivr.net/npm/katex@' + \
katex_version + \
'/dist/contrib/auto-render.min.js'
katex_inline = [r'\(', r'\)']
katex_display = [r'\[', r'\]']
katex_options = ''
The version of KaTeX used is controlled by the katex_version config setting, which per default is also automatically added to the URL strings for the KaTeX CSS and JS files. The specific delimiters written to HTML when math mode is encountered are controlled by the two lists katex_inline and katex_display.
The string variable katex_options allows you to change all available official KaTeX rendering options, e.g.
katex_options = r'''{
displayMode: true,
macros: {
"\\RR": "\\mathbb{R}"
}
}'''
You can also add KaTeX auto-rendering options to katex_options, but be aware that the delimiters entry should contain the entries of katex_inline and katex_display.
LaTeX Macros
Most probably you want to add some of your LaTeX math commands for the rendering. In KaTeX this is supported by LaTeX macros (\def). You can use the katex_options configuration setting to add those:
katex_options = r'''macros: {
"\\i": "\\mathrm{i}",
"\\e": "\\mathrm{e}^{#1}",
"\\vec": "\\mathbf{#1}",
"\\x": "\\vec{x}",
"\\d": "\\operatorname{d}\\!{}",
"\\dirac": "\\operatorname{\\delta}\\left(#1\\right)",
"\\scalarprod": "\\left\\langle#1,#2\\right\\rangle",
}'''
The disadvantage of this option is that those macros will be only available in the HTML based Sphinx builders. If you want to use them in the LaTeX based builders as well you can add them in an extra file in your project, for example definitions.py:
latex_macros = r"""
\def \i {\mathrm{i}}
\def \e #1{\mathrm{e}^{#1}}
\def \vec #1{\mathbf{#1}}
\def \x {\vec{x}}
\def \d {\operatorname{d}\!}
\def \dirac #1{\operatorname{\delta}\left(#1\right)}
\def \scalarprod #1#2{\left\langle#1,#2\right\rangle}
"""
Note, that we used proper LaTeX syntax here and not the special one required for katex_options. This is fine as sphinxcontrib.katex provides a function to translate to the required KaTeX syntax. To use our definitions for HTML and LaTeX Sphinx builders add the following to your conf.py.
import sys
import sphinxcontrib.katex as katex
# Allow import/extensions from current path
sys.path.insert(0, os.path.abspath('.'))
from definitions import latex_macros
# Translate LaTeX macros to the required KaTeX format and add to options
katex_macros = katex.latex_defs_to_katex_macros(latex_macros)
katex_options = 'macros: {' + katex_macros + '}'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sphinxcontrib-katex-0.3.0.tar.gz
.
File metadata
- Download URL: sphinxcontrib-katex-0.3.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cedda065109fcb11932b1678ba0ac25d2d369fe1a50e705c494cd668d79da01e |
|
MD5 | 604fb0b7803c17222f9e0c885fbaf5eb |
|
BLAKE2b-256 | d79757ee98c909a291bf0e5f9f0d3857caa40270668c209a2fe0cf716230137f |
File details
Details for the file sphinxcontrib_katex-0.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: sphinxcontrib_katex-0.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9d5104918bbb5ccb7090d74bd5a6f33efc59b191239bad0c0529efeb2cb1464 |
|
MD5 | 6de7244f51d515faf698e3d2c1ad50d5 |
|
BLAKE2b-256 | 3bb03a20b4812956292daf4f037ac12d736f4be843c804a49cae2ff45c9dcbdc |