<Verbing> a thing#

How to <verb> <active tense> <does something>.

The example uses <packages> to <do something> and <other package> to <do other thing>. Include links to referenced packages like this: sunpy.io.fits to show the sunpy.io.fits or like this fits to show just ‘fits’

If you have multiple plots in your example, Sphinx will use the first plot for the thumbnail by default. You can set which plot is used as the thumbnail by adding the following comment to your file. #sphinx_gallery_thumbnail_number = X where X is the figure number you want (from 1).

import matplotlib.pyplot as plt
import numpy as np

This code block is executed, although it produces no output. Lines starting with a simple hash are code comment and get treated as part of the code block. To include this new comment string we started the new block with a long line of hashes.

The sphinx-gallery parser will assume everything after this splitter and that continues to start with a comment hash and space (respecting code style) is text that has to be rendered in html format. Keep in mind to always keep your comments always together by comment hashes. That means to break a paragraph you still need to comment that line break.

In this example the next block of code produces some plotable data. Code is executed, figure is saved and then code is presented next, followed by the inlined figure.

example template
Text(65.54722222222227, 0.5, '$y$')

Again it is possible to continue the discussion with a new Python string. This time to introduce the next code block generates 2 separate figures.

plt.figure()
plt.imshow(z, cmap=plt.cm.get_cmap("hot"))
plt.figure()
plt.imshow(z, cmap=plt.cm.get_cmap("Spectral"), interpolation="none")
  • example template
  • example template
/home/docs/checkouts/readthedocs.org/user_builds/sunpy-sphinx-theme/checkouts/latest/examples/example_template.py:55: MatplotlibDeprecationWarning: The get_cmap function was deprecated in Matplotlib 3.7 and will be removed two minor releases later. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
  plt.imshow(z, cmap=plt.cm.get_cmap("hot"))
/home/docs/checkouts/readthedocs.org/user_builds/sunpy-sphinx-theme/checkouts/latest/examples/example_template.py:57: MatplotlibDeprecationWarning: The get_cmap function was deprecated in Matplotlib 3.7 and will be removed two minor releases later. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
  plt.imshow(z, cmap=plt.cm.get_cmap("Spectral"), interpolation="none")

<matplotlib.image.AxesImage object at 0x7f7d6ddad110>

There’s some subtle differences between rendered html rendered comment strings and code comment strings which I’ll demonstrate below.

Comments in comment blocks remain nested in the text.

def dummy():
    """
    Dummy function to make sure docstrings don't get rendered as text.
    """
    print("This is a dummy function")


# Code comments not preceded by the hash splitter are left in code blocks.
string = """Triple-quoted string which tries to break parser but doesn't."""

Output of the script is captured:

print("Some output from Python")
Some output from Python

Finally, I’ll call show at the end just so someone running the Python code directly will see the plots; this is not necessary for creating the docs

Total running time of the script: (0 minutes 0.604 seconds)

Gallery generated by Sphinx-Gallery