I’m using the “manual” document class of Sphinx and I’m quite happy with how the Latex Output looks like, except for the page header. It contains the title of my paper, as well as a “Release 1”.
Since I’m writing a paper and not a documentation, I clearly don’t need the release information. Unfortunately, it is very hard to find information on how to customize Sphinx latex output.
Does somebody know how to do it?
To suppress the release info at the top of your Latex output, you need to set the
releaseandlatex_elements['releasename']to empty strings in yourconf.py. So you might add or modify something like this inconf.py:Then the release info will be hidden.