diff options
| author | Benoit Allard <benoit@aeteurope.nl> | 2011-07-14 13:03:33 +0200 |
|---|---|---|
| committer | Benoit Allard <benoit@aeteurope.nl> | 2011-07-14 13:03:33 +0200 |
| commit | fe9087e64682c2065f9fdb263f6a6dede725649c (patch) | |
| tree | 447652a3fc8ba2bafe6dfecacaa7daaff42182ac | |
| parent | 32617fade9433ed4b83b063029bd21e94a94f091 (diff) | |
| download | sphinx-fe9087e64682c2065f9fdb263f6a6dede725649c.tar.gz | |
Don't use deprecated values in the template conf.py (issue732)
| -rw-r--r-- | sphinx/quickstart.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 5b6e3e49..876e7182 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -209,11 +209,16 @@ htmlhelp_basename = '%(project_fn)sdoc' # -- Options for LaTeX output -------------------------------------------------- -# The paper size ('letter' or 'a4'). -#latex_paper_size = 'letter' +latex_elements = { +# The paper size ('letterpaper' or 'a4paper'). +#'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). -#latex_font_size = '10pt' +#'pointsize': '10pt', + +# Additional stuff for the LaTeX preamble. +#'preamble': '', +} # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). @@ -236,9 +241,6 @@ latex_documents = [ # If true, show URL addresses after external links. #latex_show_urls = False -# Additional stuff for the LaTeX preamble. -#latex_preamble = '' - # Documents to append as an appendix to all manuals. #latex_appendices = [] |
