|
103 | 103 | # (source start file, target name, title, author, document class [howto/manual]).
|
104 | 104 | _stdauthor = r'Guido van Rossum\\Fred L. Drake, Jr., editor'
|
105 | 105 | latex_documents = [
|
106 |
| - ('c-api/index.rst', 'c-api.tex', |
| 106 | + ('c-api/index', 'c-api.tex', |
107 | 107 | 'The Python/C API', _stdauthor, 'manual'),
|
108 |
| - ('distutils/index.rst', 'distutils.tex', |
| 108 | + ('distutils/index', 'distutils.tex', |
109 | 109 | 'Distributing Python Modules', _stdauthor, 'manual'),
|
110 |
| - ('documenting/index.rst', 'documenting.tex', |
| 110 | + ('documenting/index', 'documenting.tex', |
111 | 111 | 'Documenting Python', 'Georg Brandl', 'manual'),
|
112 |
| - ('extending/index.rst', 'extending.tex', |
| 112 | + ('extending/index', 'extending.tex', |
113 | 113 | 'Extending and Embedding Python', _stdauthor, 'manual'),
|
114 |
| - ('install/index.rst', 'install.tex', |
| 114 | + ('install/index', 'install.tex', |
115 | 115 | 'Installing Python Modules', _stdauthor, 'manual'),
|
116 |
| - ('library/index.rst', 'library.tex', |
| 116 | + ('library/index', 'library.tex', |
117 | 117 | 'The Python Library Reference', _stdauthor, 'manual'),
|
118 |
| - ('reference/index.rst', 'reference.tex', |
| 118 | + ('reference/index', 'reference.tex', |
119 | 119 | 'The Python Language Reference', _stdauthor, 'manual'),
|
120 |
| - ('tutorial/index.rst', 'tutorial.tex', |
| 120 | + ('tutorial/index', 'tutorial.tex', |
121 | 121 | 'Python Tutorial', _stdauthor, 'manual'),
|
122 |
| - ('using/index.rst', 'using.tex', |
| 122 | + ('using/index', 'using.tex', |
123 | 123 | 'Using Python', _stdauthor, 'manual'),
|
124 |
| - ('whatsnew/' + version + '.rst', 'whatsnew.tex', |
| 124 | + ('whatsnew/' + version, 'whatsnew.tex', |
125 | 125 | 'What\'s New in Python', 'A. M. Kuchling', 'howto'),
|
126 | 126 | ]
|
127 | 127 | # Collect all HOWTOs individually
|
128 |
| -latex_documents.extend(('howto/' + fn, 'howto-' + fn[:-4] + '.tex', |
| 128 | +latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex', |
129 | 129 | 'HOWTO', _stdauthor, 'howto')
|
130 | 130 | for fn in os.listdir('howto')
|
131 | 131 | if fn.endswith('.rst') and fn != 'index.rst')
|
|
139 | 139 | '''
|
140 | 140 |
|
141 | 141 | # Documents to append as an appendix to all manuals.
|
142 |
| -latex_appendices = ['glossary.rst', 'about.rst', 'license.rst', 'copyright.rst'] |
| 142 | +latex_appendices = ['glossary', 'about', 'license', 'copyright'] |
0 commit comments