.. _sphinx_doc: Sphinx documentation ==================== This section deals with the sphinx documentation included in the library repository and built on top the Python interface. Sphinx 101 ---------- This documentation is powered by the `Sphinx documentation system `_. Hence, reading `Sphinx's own documentation `_ might be a good idea for starters! You will also need to learn some basics about its main featured language: `reStructuredText `_. Sphinx extensions ~~~~~~~~~~~~~~~~~ numpydoc The `numpydoc `_ Sphinx extension is used for a structured semi-automatic generation of the :ref:`User Manual ` from the :ref:`docstrings ` of OpenTURNS objects. matplotlib.sphinxext.plot_directive The `plot_directive `_ Matplotlib/Sphinx extension is used for *executing* and *testing* the code blocks featured in the pages of this documentation, especially in the :ref:`examples section `. .. _contribute_docstrings: Docstrings (in separate SWIG header files) ------------------------------------------ OpenTURNS main featured language is C++. We then use `SWIG `_ in order to generate the Python interface. Hence, docstrings are defined within **dedicated SWIG header files** (:file:`$OT_SOURCE_DIR/python/src/*_doc.i.in`) and are then included in the main SWIG header files (:file:`$OT_SOURCE_DIR/python/src/*.i`). For instance, the docstrings for the :class:`~openturns.Arcsine` distribution are defined in :file:`Arcsine_doc.i.in`, and this docstring file is then included in :file:`Arcsine.i` using a `%include Arcsine_doc.i`. .. note:: Note the difference between the name of the docstring file in the source tree (:file:`Arcsine_doc.i.in`) and its reference in :file:`Arcsine.i`. The :file:`.in` suffix disappeared because the docstring files are preprocessed by CMake in order to escape LaTeX backslashes for SWIG and Python. Note also that the use of double quotes (`"`) in docstrings is forbidden. This is because SWIG uses them to delimit the docstrings. Here are a few recommendations you'd better read in order to help us enhancing the docstrings coverage. Docstring conventions ~~~~~~~~~~~~~~~~~~~~~ Please follow `PEP257 `_ and `numpydoc `_ guidelines for writing the docstrings as well as `PEP8 `_ recommendations for the Examples section (for instance, please don't ``from openturns import *``, indent with 4 spaces, etc. ...). LaTeX ~~~~~ Using maths is highly recommended for illustrating the mathematical concepts featured in OpenTURNS. Mathematical expression must use Sphinx ``:math:`` roles for inline maths, and ``.. math::`` directives for equations. These equations will appear as plain LaTeX at prompt (using the ``help`` command in Python or the ``?`` suffix in IPython) but Sphinx will render them as PNG images in the :ref:`User Manual `. .. note:: Please use the math commands defined in our :file:`math_notations.sty` LaTeX package. Docstrings & inheritance ~~~~~~~~~~~~~~~~~~~~~~~~ Good news! Docstrings are inherited so that we only need to document the methods of the parent objects (until we want to make them more specific). Bridge pattern ~~~~~~~~~~~~~~ An important number of objects use the :ref:`bridge pattern `. For instance, the :class:`~openturns.Distribution` object which is the interface class for all probability distributions has an implementation class **DistributionImplementation** (that we don't need to expose). And the trick is that the interface class does not inherit from its implementation object but the children do, so we need to document them both. In order to avoid docstrings duplicates though we decided to document the implementation class with defined blocks. Since we load the implementation first, we can then refer to the same defined blocks for documenting the object itself. For instance the main docstring of the :class:`~openturns.Distribution` object is defined and referred to in the :file:`DistributionImplementation_doc.i.in` SWIG header file:: ... %define OT_Distribution_doc "Base class for probability distributions." %enddef %feature("docstring") OT::DistributionImplementation OT_Distribution_doc ... and it is then only being referred to in the :file:`Distribution_doc.i.in` SWIG header file:: ... %feature("docstring") OT::Distribution OT_Distribution_doc ... Integration to the building suite --------------------------------- The separate docstring SWIG header files are included in the SWIG header files of the `openturns repos `_, so this does not need any further integration steps (out of the backslashes escaper CMake script). A docstring test (`python/test/t_docstring.py`) has been added to the Python tests. We added the following CMake variables: SPHINX_EXECUTABLE Path to the *sphinx-build* command. SPHINX_FLAGS This is passed as the options of the sphinx-build command (see `sphinx-build invocation `_). All these targets depend on the rst files located in the sources (:file:`$OT_SOURCE_DIR/python/doc/*.rst`).