I'm using Sphinx autodoc to create Python documentation, which is then 
hosted on ReadTheDocs here 
<http://sensormotion.readthedocs.io/en/develop/index.html>. The PDF that is 
generated by ReadTheDocs only contains the TOC of my index page, which you 
can see here 
<https://media.readthedocs.org/pdf/sensormotion/develop/sensormotion.pdf>. 

I want the PDF to also contain my entire module index and docs for every 
module/function: 
http://sensormotion.readthedocs.io/en/develop/source/sensormotion.html

So essentially I want my index TOC and full module pages both merged into 
the same PDF

What settings do I need to change in my conf.py to achieve this?

Currently I only have the default latex_documents options:

    latex_documents = [
        (master_doc, 'index.tex', project + ' Documentation',
         author, 'howto'),
    ]

I have tried adding another tuple to the list for the actual 
module/function references but nothing seems to be appended to the PDF:

    latex_documents = [
        (master_doc, 'index.tex', project + ' Documentation',
         author, 'howto'),
        ('sensormotion', 'sensormotion.tex', project + ' Documentation',
         author, 'howto'),
    ]

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to