Metadata-Version: 2.1
Name: sphinxcontrib-thm
Version: 1.3.dev20210214
Summary: Sphinx extension for directives mentioned in amsthm (theorem, example, exercise,...) and more
Home-page: https://github.com/rpuntaie/sphinxcontrib-thm
Author: Marcin Szamotulski, Roland Puntaier
Author-email: coot@riseup.net, roland.puntaier@gmail.com
License: BSD
Download-URL: http://pypi.python.org/pypi/sphinxcontrib-thm
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Documentation
Classifier: Topic :: Utilities
Requires-Dist: Sphinx

========
Archived
========

Possibly since this `Sphinx 3.3 <https://github.com/sphinx-doc/sphinx/issues/8360>`__
automatic numbering of this Sphinx extension,
and ``:numref:``,
does not work any more.

Alternative: `Sphinx-proof <https://github.com/executablebooks/sphinx-proof>`__.

===========================================
Description of the Theorem Sphinx Extension
===========================================

.. _`Sphinx`: http://sphinx-doc.org/

This `Sphinx`_ extension
adds directives mentioned in the LaTeX `amsthm`__ package:
theorem, example, exercise,...and more.

__ http://www.ams.org/arc/tex/amscls/amsthdoc.pdf

`Sphinx`_ has no directive that would well fit such items.

For LaTeX these are translated to ``\begin{theorem}{title}`` and so on. 

----

:Version: 1.3
:Author: Roland Puntaier ``roland.puntaier@gmail.com``
:License: `BSD License <http://opensource.org/licenses/bsd-license.html>`_
:Git Repository: https://github.com/rpuntaie/sphinxcontrib-thm
:PyPI Package: http://pypi.python.org/pypi/sphinxcontrib-thm

Prerequisites and Configuration
===============================

To install, use::

  pip install sphinxcontrib-thm 

To install directly from `github <https://github.com/rpuntaie/sphinxcontrib-thm>`_::

  git clone https://github.com/rpuntaie/sphinxcontrib-thm
  cd sphinxcontrib-thm
  #don't use install here! It would produce a second sphinxcontrib folder
  python setup.py sdist 
  pip install --user dist/sphinxcontrib-thm*tar.gz

or::

  pip install --user git+https://github.com/rpuntaie/sphinxcontrib-thm

For LaTeX output,
``amsthm`` (or ``ntheorem``) is needed.
For the example in the test folder also ``unicode-math`` is needed.

For HTML output,
``sphinx.ext.mathjax`` should be in `conf.py`_.

You have to load the extension in `conf.py`_::

  extensions = ['sphinxcontrib.thm',``sphinx.ext.mathjax``,...]

Usage
=====

The extension adds 

- several directives mentioned in `amsthm <http://mirror.easyname.at/ctan/macros/latex/required/amscls/doc/amsthdoc.pdf>`_::

    .. theorem:: title
    .. lemma:: title
    .. corollary:: title
    .. proposition:: title
    .. conjecture:: title
    .. criterion:: title
    .. assertion:: title
    .. definition:: title
    .. condition:: title
    .. problem:: title
    .. example:: title
    .. exercise:: title
    .. algorithm:: title
    .. question:: title
    .. axiom:: title
    .. property:: title
    .. assumption:: title
    .. hypothesis:: title
    .. remark:: title
    .. notation:: title
    .. claim:: title
    .. summary:: title
    .. acknowledgment:: title
    .. case:: title
    .. conclusion:: title
    .. proof:: title


  For LaTeX, you need to separately define these in `conf.py`_ via ``\newtheorem`` in the LaTeX preamble. See below__.

  While ``.. note::`` and others use ``\begin{sphinxadmonition}{title}``, these directives
  are translated to ``\begin{theorem}{title}`` and so on. 

__ `conf.py`_

- *environment* directive::

    .. environment:: instruction
	:name: Instruction
	:html_title: title used by html builder
	:latex_title: title used by LaTeX builder

  You can also use `:title:` if both `:html_title:` and `:latex_title:` should to be the same.  
  Replace ``instruction``.
  It is a mandatory argument.
  In LaTeX you must have ``newtheorem{instruction}{Instruction}``,
  unless it is an available LaTeX environment, like ``equation``.

- *textcolor* directive and role::

    .. textcolor:: #00FF00

            This text is green

    :textcolor:`<#FF0000> this text is red`.

  Roles are not recursive.
  Rolse can only contain text, not other nodes.
  Directives are recursive, though.

- *align* directive::

    .. align:: center
    .. align:: left
    .. align:: flushleft
    .. align:: right
    .. align:: flushright

  Each of them has a separate numbering.

For refs use the normal sphinx refs like::

    .. _`theorem1`:

    .. theorem:: title

    Text here: By using backticks one can find the matching parts more easily in the editor.

    See `theorem1`_. 

In HTML one needs to provide formatting via ``css``.
This can be done using `conf.py`_.

.. _`conf.py`:

Here is an example ``conf.py``:



