提供缩略图的图像#

此示例演示如何提供作为缩略图显示的图像。这是通过在示例文件中 docstring 下面的某个位置指定关键字-值对 sphinx_gallery_thumbnail_path = 'fig path' 作为注释来完成的。在此示例中,我们指定希望使用 _static 文件夹中的 demo.png 图像作为缩略图。

import matplotlib.pyplot as plt
import numpy as np

# sphinx_gallery_thumbnail_path = '_static/demo.png'
x = np.linspace(0, 4 * np.pi, 301)
y1 = np.sin(x)
y2 = np.cos(x)

图 1#

plt.figure()
plt.plot(x, y1, label="sin")
plt.plot(x, y2, label="cos")
plt.legend()
plt.show()
plot 4b provide thumbnail

图 2#

plt.figure()
plt.plot(x, y1, label="sin")
plt.plot(x, y2, label="cos")
plt.legend()
plt.xscale("log")
plt.yscale("log")
plt.show()
plot 4b provide thumbnail

脚本的总运行时间:(0 分钟 1.683 秒)

估计的内存使用量:176 MB

由 Sphinx-Gallery 生成的画廊