Hi,
I know I read something about my problem somewhere, but I can not find references to it anymore.
Scenario: I have a project with two different index files (index.rst for html and latex.rst for latex), because the HTML version has a section with download links that should not be part of the latex versions. The point is that at every build (both html and latex) there is a warning message "latex.rst: WARNING: document isn't included in any toctree", although the latex.rst is referenced:
latex_documents = [
('latex', 'manual.tex', 'My Manual', '', 'manual', False),
The warning itself does not create any problem in the build, except for a file latex.html being created, it is just annoying. Adding :orphan: does not help either
My question is therefore: is there a (suggested) way to let this warning disappear? Or, in other words, what is the correct way to set up the source/index in these cases?
Thanks for any pointer,
Stefano