I am working on a larger documentation project using Python-Sphinx. I just got started and managed to get over the first hurdles and created a folder structure oriented along individual subprojects contributing to the overall project:
.../source/
conf.py
index.rst (braket file for everything)
/OverViewDocumentation/
overview.rst
/Subprojects/
/sub1/
index.rst
sub1Docu.rst
/sub2/
indexfile.rst
sub2Docu.rst
What I would like to see is that this structure is accessible through one single html structure, but the leaf-documents become individual LaTeX/PDF documents.
Can that be achieved?
My conf.py looks as follows:
latex_documents = [
(master_doc,
'TexDoc1.tex',
'Title1',
'author1',
'Custom docclass'),
('abolute\\path\\to\\other\\indexfile.rst',
'TexDoc2.tex',
'Title2',
'author2',
'Custom docclass'),
]
But I always get the error message:
WARNING: "latex_documents" config value references unknown document <pathto>\indexfile
Note the error comes up no matter if I use absolute or relative path.