mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
[3.13] Doc: Fix default `latex_elements['papersize']
` (GH-124525) (#124725)
Doc: Fix default ``latex_elements['papersize']`` (GH-124525)
https://www.sphinx-doc.org/en/master/latex.htmlGH-the-latex-elements-configuration-setting
It should be 'letterpaper' or 'a4paper' not 'letter' or 'a4'
(not to be confused with PAPER env variable).
(cherry picked from commit fae5058ec1
)
Co-authored-by: Jean-François B <2589111+jfbu@users.noreply.github.com>
This commit is contained in:
parent
243db20b75
commit
fe58596cce
1 changed files with 2 additions and 2 deletions
|
@ -413,8 +413,8 @@ latex_elements = {
|
|||
\let\endVerbatim=\endOriginalVerbatim
|
||||
\setcounter{tocdepth}{2}
|
||||
''',
|
||||
# The paper size ('letter' or 'a4').
|
||||
'papersize': 'a4',
|
||||
# The paper size ('letterpaper' or 'a4paper').
|
||||
'papersize': 'a4paper',
|
||||
# The font size ('10pt', '11pt' or '12pt').
|
||||
'pointsize': '10pt',
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue