diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-26 06:28:25 -0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2017-08-26 15:50:20 -0600 |
commit | 646056ec3b8e6f952190a7b92bd8076e1d8c60d4 (patch) | |
tree | ceeb6c690de8fe40d473edfa44aa72d3f55a9945 /Documentation | |
parent | c1aa3871fa0f676559f6d0cb6941e5f4ce7de306 (diff) | |
download | linux-646056ec3b8e6f952190a7b92bd8076e1d8c60d4.tar.bz2 |
docs-rst: fix verbatim font size on tables
On Sphinx 1.6, fancy boxes are used for verbatim. The sphinx.sty
sets verbatim font is always \small. That causes a problem
inside tables that use smaller fonts, as it can be too big for
the box.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 9e941be37b94..f9054ab60cb1 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -345,7 +345,7 @@ if major == 1 and minor <= 4: latex_elements['preamble'] += '\\usepackage[margin=0.5in, top=1in, bottom=1in]{geometry}' elif major == 1 and (minor > 5 or (minor == 5 and patch >= 3)): latex_elements['sphinxsetup'] = 'hmargin=0.5in, vmargin=1in' - + latex_elements['preamble'] += '\\fvset{fontsize=auto}\n' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, |