On Mon, Oct 15, 2012 at 9:43 AM, Renato <renato.pontef...@gmail.com> wrote:
> Hi,
> I have always the same problem:
> the same source, produce a good HTML output, but not enought good pdf format
> (as I explained before, on the pdf file I have a header that enumerate the
> chapter and if it encounter a part - #######
>                            Part 1
>                           ######
> it increase the "chapter" header. I don't know why.
> But I foud a solution:
> I can eliminate the header. For my doc is not a prob (maybe I will find a
> solution, but for now...)
>
> Can someone tels me how can I do that? (If it is possible)
>
> TIA
>
> Renato

I think you might be having an issue with how the Sphinx latex builder
ignores the first header in the master document (which is probably
index.rst).  It assumes the first header is redundant since the title
is already specified in your conf.py.

The following works for me using the default settings and placed in index.rst:

###############################################
 Main Title - Replaced with title from conf.py
###############################################

Chapter 1
*********

Section 1.1
===========

Subsection 1.1.1
----------------

Chapter 2
*********

Section 2.1
===========

Subsection 2.1.1
----------------


-- 
Jonathan Waltman

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-dev@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to