在狮身人面像中插入图像
Inserting an image in sphinx
我正在尝试在我的文档页面中插入图像,通过文档我是这样完成的
**Tutorial on Training model**
==============================
.. image::/home/predible/Desktop/sixfortyintofoureighty.png
当我运行
make html
它不会抛出任何错误,但图像不会显示在文档中,任何关于如何让我的图像显示的建议都会非常有帮助,在此先感谢。
.. image::
和图片路径之间应该有一个space。
图像路径必须是相对于源文件的路径,或者是绝对路径,这意味着它是相对于顶级源目录(参见 http://www.sphinx-doc.org/en/stable/rest.html#images)。
我正在尝试在我的文档页面中插入图像,通过文档我是这样完成的
**Tutorial on Training model**
==============================
.. image::/home/predible/Desktop/sixfortyintofoureighty.png
当我运行
make html
它不会抛出任何错误,但图像不会显示在文档中,任何关于如何让我的图像显示的建议都会非常有帮助,在此先感谢。
.. image::
和图片路径之间应该有一个space。图像路径必须是相对于源文件的路径,或者是绝对路径,这意味着它是相对于顶级源目录(参见 http://www.sphinx-doc.org/en/stable/rest.html#images)。