brechtm/rinohtype

The word 'documentation' is appended to the project title

sachin-suresh-rapyuta opened this issue · 1 comments

Is there an existing issue for this?

  • I have searched the existing issues

PDF produced by rinohtype

Test project docu-
mentation

This is how the word 'documentation' also breaks into next line.

Source files

conf.py

# -- Project information -----------------------------------------------------

project = 'Test project'
copyright = '2022, Sachin'
author = 'Sachin'

extensions = [
    'rinoh.frontend.sphinx'
]

rinoh_documents = [dict(doc='index',        # top-level file (index.rst)
                        target='manual',
                        template='rinohtype.rtt',
                        logo='_static/rr-logo-vertical2022-1100px-transp.png')]   # output file (manual.pdf)

Versions

rinoh 0.5.4 (2022-06-17)

sphinx-build 3.2.1

Python 3.8.10

Here, rinohtype basically mimics the LaTeX builder's behaviour. By default, the title on the title page is project documentation (project is defined in conf.py). You can override the title by adding a title entry in the rinoh_documents dictionary.