-
I'm using Sphinx-Doc to document a specification. On the HTML pages it's very easy to add a copyright statement. Adding it to the PDF has been more challenging. In my conf.py I've added the following:
It appears that the behavior in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Are you using the |
Beta Was this translation helpful? Give feedback.
I figured out how to do it. I'm documenting it here for posterity.
latex
directory.sphinxlatexstylepage.sty
frombuild/latex
to mysource/latex
directoryconf.py
I added `latex_additonal_files = [ 'latex/sphinxlatexstylepage.sty' ]latex/sphinxlatexstylepage.sty
to meet my needsIt would be great if the default style could be tuned from
conf.py
with some well defined settings, but this override gets the job done.