I'm new to Sphinx. I generated .rst
files using autodoc. The following is the .rst
file for one of the modules:
Building things
=====================
Actions
----------------------------------
.. automodule:: acat.build.actions
:members: func1, func2, func3
:undoc-members:
:show-inheritance:
Patterns
----------------------------------
.. automodule:: acat.build.patterns
:members: func4, func5
:undoc-members:
:show-inheritance:
Orderings
----------------------------------
.. automodule:: acat.build.orderings
:members: func6
:undoc-members:
:show-inheritance:
Now I want to insert images after func1
, func3
and func5
, I know the image can be embedded by
.. image:: func1_example.png
But where should I put these lines to make the images appear right under the corresponding functions?