diff options
author | Jean-François B <jfbu@free.fr> | 2016-06-15 09:31:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-15 09:31:47 +0200 |
commit | 4cf78e608ec4c8fb877f3d80b5e4409fd852c21d (patch) | |
tree | 6a68cf322e41dcdd2dba8575c183bb90893ef170 /sphinx/quickstart.py | |
parent | 8608387585b6d24945a4ba94f80f50714425a6d4 (diff) | |
parent | f16ce14954ac855189636db2d5992a9e259ab7bb (diff) | |
download | sphinx-git-4cf78e608ec4c8fb877f3d80b5e4409fd852c21d.tar.gz |
Merge pull request #2675 from jfbu/jfbu_macroswithprefix
Fix #2629. Add new config option latex_keep_old_macro_names
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 1f14c0d09..4680fecd4 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -359,6 +359,12 @@ latex_documents = [ # # latex_appendices = [] +# It false, will not define \strong, \code, \titleref, \crossref ... but only +# \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added +# packages. +# +# latex_keep_old_macro_names = True + # If false, no module index is generated. # # latex_domain_indices = True |