Opened 16 years ago
Closed 16 years ago
#8955 closed (fixed)
Latex Document Empty
Reported by: | Simon Blanchard | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | latex | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The sphinx generated latex document is empty. If the conf.py file is changed to reference 'contents' as opposed to 'index' for latex_documents, as below, then at least the generated file has some content:
latex_documents = [
('contents', 'django.tex', 'Django Documentation', 'Django Software Foundation', 'manual'),
]
Note:
See TracTickets
for help on using tickets.
(In [9068]) Fixed #8955: Modified the sphinx configuration to generate LaTeX documentation. Thanks to simonb for the report and fix.