diff options
-rw-r--r-- | Documentation/conf.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 1c6d9da5d1b5..38b240073336 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py | |||
@@ -246,16 +246,19 @@ htmlhelp_basename = 'TheLinuxKerneldoc' | |||
246 | 246 | ||
247 | latex_elements = { | 247 | latex_elements = { |
248 | # The paper size ('letterpaper' or 'a4paper'). | 248 | # The paper size ('letterpaper' or 'a4paper'). |
249 | #'papersize': 'letterpaper', | 249 | 'papersize': 'a4paper', |
250 | 250 | ||
251 | # The font size ('10pt', '11pt' or '12pt'). | 251 | # The font size ('10pt', '11pt' or '12pt'). |
252 | #'pointsize': '10pt', | 252 | 'pointsize': '10pt', |
253 | |||
254 | # Additional stuff for the LaTeX preamble. | ||
255 | #'preamble': '', | ||
256 | 253 | ||
257 | # Latex figure (float) alignment | 254 | # Latex figure (float) alignment |
258 | #'figure_align': 'htbp', | 255 | #'figure_align': 'htbp', |
256 | |||
257 | # Additional stuff for the LaTeX preamble. | ||
258 | 'preamble': ''' | ||
259 | % Allow generate some pages in landscape | ||
260 | \\usepackage{lscape} | ||
261 | ''' | ||
259 | } | 262 | } |
260 | 263 | ||
261 | # Grouping the document tree into LaTeX files. List of tuples | 264 | # Grouping the document tree into LaTeX files. List of tuples |