我正在用 Sphinx 生成我的 python 库的文档。我使用扩展sphinx.ext.viewcode
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"sphinx.ext.ifconfig",
"sphinx.ext.viewcode", # Add links to highlighted source code
"sphinx.ext.napoleon", # to render Google format docstrings
]
这会生成一个指向源文档的链接,类似于:
class MyClass(param1, param2)[source]
像这张图片:
如果我按源代码,我会在 HTML 页面中正确地看到源代码。
我想在生成 LaTeX 文件时做完全相同的事情。当您从 LaTeX 创建 pdf 时,我在文档中找不到如何添加源代码。任何提示?
料青山看我应如是
明月笑刀无情
相关分类