# HG changeset patch # User Franz Glasner # Date 1519903597 -3600 # Node ID 9d0d9446de08b4ea132ac3c04b3d9af7c27a09e6 # Parent e78f307f81a03d234b09d1979bfcaa5d6fd9f1cf Annotate LaTeX output with page numbers and show URL targets in the footnotes. Also change the paper size to A4. diff -r e78f307f81a0 -r 9d0d9446de08 doc/conf.py --- a/doc/conf.py Thu Mar 01 11:22:47 2018 +0100 +++ b/doc/conf.py Thu Mar 01 12:26:37 2018 +0100 @@ -65,7 +65,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -119,7 +119,7 @@ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # - # 'papersize': 'letterpaper', + 'papersize': 'a4paper', # The font size ('10pt', '11pt' or '12pt'). # @@ -132,6 +132,8 @@ # Latex figure (float) alignment # # 'figure_align': 'htbp', + # Use "Version" instead of "Release" on the title + 'releasename': 'Version', } # Grouping the document tree into LaTeX files. List of tuples @@ -142,6 +144,9 @@ 'Franz Glasner', 'manual', True), ] +latex_show_urls = 'footnote' +latex_show_pagerefs = True + # -- Options for manual page output ------------------------------------------