Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b3360dc

Browse files
miss-islingtonjfbu
andauthored
[3.12] Doc: Fix default latex_elements['papersize'] (GH-124525) (#124726)
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 fae5058) Co-authored-by: Jean-François B <[email protected]>
1 parent a178445 commit b3360dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,8 @@
391391
\let\endVerbatim=\endOriginalVerbatim
392392
\setcounter{tocdepth}{2}
393393
''',
394-
# The paper size ('letter' or 'a4').
395-
'papersize': 'a4',
394+
# The paper size ('letterpaper' or 'a4paper').
395+
'papersize': 'a4paper',
396396
# The font size ('10pt', '11pt' or '12pt').
397397
'pointsize': '10pt',
398398
}

0 commit comments

Comments
 (0)