Sphinx is a great tool -- thanks for making it available.

***

Would someone help me to achieve the following?

   - I want the main matter of my Sphinx document to be numbered.
   - I want a single glossary reST document to follow the main matter 
   un-numbered.
   - I want the aforementioned glossary to appear as an appendix in LaTeX 
   PDF output.

***

I acheive the above in HTML with the following (in my index.rst):

..  toctree::
    :numbered:
    :maxdepth: 2

    chap-01
    chap-02
    chap-03

..  toctree::

    glossary

And I also get the glossary to appear as a LaTeX appendix using the 
following in my conf.py:

latex_appendices = ['glossary']


HOWEVER, the glossary appears twice in the LaTeX output: once as a numbered 
chapter, again as an appendix.

Can someone give me some insight?

Respectfully,

Jason

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to