documentation - How do I get rid of the "Release 1" in the Page Header of the Sphinx Latex Output? -
i'm using "manual" document class of sphinx , i'm quite happy how latex output looks like, except page header. contains title of paper, "release 1".
since i'm writing paper , not documentation, don't need release information. unfortunately, hard find information on how customize sphinx latex output.
does know how it?
to suppress release info @ top of latex output, need set release
, latex_elements['releasename']
empty strings in conf.py
. might add or modify in conf.py
:
release = '' latex_elements = { 'releasename': '' }
then release info hidden.
Comments
Post a Comment