Fix Readthedocs PDF generation

RTD is consistently not building the PDF of the Idris Documentation. I think it is because we have two documents built.
I have made the opinion to only have the main tutorial build, as this would be of most interest to others.
This commit is contained in:
Jan de Muijnck-Hughes 2020-03-10 14:45:05 +00:00
parent b7a191bbf3
commit c76ade1f0a

View File

@ -301,8 +301,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'idris.tex', u'Documentation for the Idris Language', u'The Idris Community', 'report')
, ('tutorial/index', 'idris-tutorial.tex', u'The Idris Tutorial', u'The Idris Community', 'howto'),
# (master_doc, 'idris.tex', u'Documentation for the Idris Language', u'The Idris Community', 'report')
('tutorial/index', 'idris-tutorial.tex', u'The Idris Tutorial', u'The Idris Community', 'howto'),
]