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 | db733f40fce31f9255d17a6a824a55d4ec1439c2 (patch) | |
tree | 447652a3fc8ba2bafe6dfecacaa7daaff42182ac /sphinx/quickstart.py | |
parent | f4bd8c5e84b4612254599934a05a39b97f8562e3 (diff) | |
download | sphinx-git-db733f40fce31f9255d17a6a824a55d4ec1439c2.tar.gz |
Don't use deprecated values in the template conf.py (issue732)
Diffstat (limited to 'sphinx/quickstart.py')
-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 5b6e3e491..876e71821 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 = [] |