I use the Sphinx Python documentation generator. Creating PDF documents is very easy and simple, but I have one problem.
All generated PDF documents have English words like “chapter”, “release”, and “part”.
How can I override these English labels in another language, or remove them completely?
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. 🙂