I use sphinx python documentation generator. Creating pdf documents are very easy and simple but.... i have one problem.

All generated pdf documents have english words like "chapter", "release", "part". Is it possible change it? How set another words or remove it?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Sphinx generates LaTeX files, and then uses LaTeX to generate the PDF. So yes, you can, but it typically involves learning LaTeX and changing the LaTeX macros. I did a quick search and couldn't find any place where the "Chapter" was defined, so it's probably defined in the Bjarne chapter heading style (which is the default), which means you need to find that definition and see of you can override it, or make a new definition.

LaTeX is big, so take a deep breath. But it's definitely possible. :)

link|improve this answer
Thank you for answer and your research. I think it is good moment for me to learn LaTeX:). – pmoniq Feb 13 '10 at 10:17
2  
It is also possible to generate PDFs with rst2pdf. techtonik.rainforce.org/2010/05/sphinx-pdf-with-rst2pdf.html – techtonik May 24 '10 at 16:45
Actually it isn't difficult at all, see my answer below. Apart from installing latex and the required language packages (babel) you only have to make a small configuration change to conf.py. – Marijn Apr 15 '11 at 9:53
feedback

In your conf.py, there is the following paragraph (around line 57 in a conf.py created by sphinx-quickstart):

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#language = None

In my case, I changed it to:

language = nl      # bug!

Which of course should be:

language = 'nl'    # don't forget the quotes :-)

This will work for all Sphinx output; in my case, I only checked the html and latex output. On the Spinx website, there is list of supported languages.

link|improve this answer
It could be that you should install some language packages for you latex distribution. Better ask that question on tex.stackexchange.com. – Marijn Mar 9 '11 at 13:47
Note that I didn't have to do that. I use MiKTeX 2.9 on Windows. Last time I ran it on Linux (last year; Ubuntu 9.04) I had to install some language packages, which was quite straightforward. – Marijn Mar 9 '11 at 13:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.