I'm using Sphinx and I want to "copy" over a given section from one *.rst file into multiple other ones automatically, so that when I adapt the text section in the first file the changes are automatically reflected in the copied parts of the other files.
E.g.:
base.rst:
This is a section/paragraph I want to see in other *.rst - files.
derivate.rst:
Here is some text. But the following paragraph should be the paragraph from above ^^:
<that paragraph from above>
Here the file continues.
How can I do that with Sphinx and reStructuredText?