docs/conf.py: avoid font scale option
This commit is contained in:
parent
a02e8b1e95
commit
bca294a17c
23
docs/conf.py
23
docs/conf.py
@ -21,6 +21,21 @@
|
|||||||
# import sys
|
# import sys
|
||||||
# sys.path.insert(0, os.path.abspath('.'))
|
# sys.path.insert(0, os.path.abspath('.'))
|
||||||
|
|
||||||
|
# -- Implement custom formatter for code-blocks ---------------------------
|
||||||
|
#
|
||||||
|
# * use smaller font
|
||||||
|
# * avoid space between lines to nicely format utf8 tables
|
||||||
|
|
||||||
|
from sphinx.highlighting import PygmentsBridge
|
||||||
|
from pygments.formatters.latex import LatexFormatter
|
||||||
|
|
||||||
|
class CustomLatexFormatter(LatexFormatter):
|
||||||
|
def __init__(self, **options):
|
||||||
|
super(CustomLatexFormatter, self).__init__(**options)
|
||||||
|
self.verboptions = r"formatcom=\footnotesize\relax\let\strut\empty"
|
||||||
|
|
||||||
|
PygmentsBridge.latex_formatter = CustomLatexFormatter
|
||||||
|
|
||||||
# -- General configuration ------------------------------------------------
|
# -- General configuration ------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
@ -267,16 +282,12 @@ latex_elements = {
|
|||||||
'fontpkg': r'''
|
'fontpkg': r'''
|
||||||
\setmainfont{DejaVu Serif}
|
\setmainfont{DejaVu Serif}
|
||||||
\setsansfont{DejaVu Sans}
|
\setsansfont{DejaVu Sans}
|
||||||
\setmonofont{DejaVu Sans Mono}[Scale=0.8]
|
\setmonofont{DejaVu Sans Mono}
|
||||||
''',
|
''',
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
# Additional stuff for the LaTeX preamble.
|
||||||
#
|
#
|
||||||
# fix baselineskip in code-blocks with scaled font
|
# 'preamble': '',
|
||||||
# see: https://github.com/sphinx-doc/sphinx/issues/6733
|
|
||||||
'preamble': r'''
|
|
||||||
\fvset{formatcom=\baselineskip9pt\relax\let\strut\empty}
|
|
||||||
''',
|
|
||||||
|
|
||||||
# Latex figure (float) alignment
|
# Latex figure (float) alignment
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user