我在 readthedocs 网站上有很多文档,我希望能够将其作为两个单独的 PDF 文件提供。我已将每个内容的内容分成两个顶级 *.rst 文件(formal.rst
和informal.rst
),在 conf.py 中指定它们(如此处建议),但我在构建过程中遇到错误:
Latexmk: Need to specify at most one filename if jobname specified,
but 2 were found (after defaults and wildcarding).
我不确定 readthedocs 是否可以构建多个 PDF?如果不是,这是否意味着我应该有一个完全独立的分支......?或者 ...?
配置文件:
latex_documents = [
('formal', 'formal.tex', u'My stuff', u'My contributors', 'manual'),
('informal', 'informal.tex', u'My stuff', u'My contributors', 'manual'),
]