参考はここ。ありがとうございます。
Makefileに
pdf:
$(SPHINXBUILD) -b pdf $(ALLSPHINXOPTS) build/pdf
@echo
@echo "Build finished. The PDF files are in ${BUILDDIR}/pdf."
を追加
conf.pyの extensions に 'rst2pdf.pdfbuilder' を追加
extensions = ['sphinx.ext.autodoc', 'rst2pdf.pdfbuilder']
また、conf.pyに下記を追加 pdf_stylesheets = ['sphinx','kerning','a4','ja']
pdf_documents = [ ('index', u'MyProject', u'My Project', u'Author Name'),
]
('index', u'MyProject', u'My Project', u'Author Name'),はその他の設定を丸コピー
これで sphinx pdf で直接pdfが生成できる。
すばらしい。
0 件のコメント:
コメントを投稿