I want to be able to set toctree documents one at a time in my document, then on the same document redisplay the toctree. Textually, my question is hard to understand, so just refer to my example.
This is my current document called project-structure.rst
:
project-structure.rst
This is what the code looks like: https://pastebin.com/dzWhZwzm
Briefly, this is what I do in the code:
Description of build folder...
.. toctree::
:maxdepth: 3
Description of src folder...
.. toctree::
:maxdepth: 3
Basically, I add 6 documents to the toctree with six toctree statements so I can comment about every document in the toctree.
I want to display the toctree of project-structure.rst
at the very bottom of project-structure.rst
once again at the bottom without having comments describing each document. Is there a way to do this? I would rather not do links because I still want to be able to show depth levels of the documents.