如何强制狮身人面像使用 \section 而不是 \chapter
How to force sphinx to use \section instead of \chapter
我不想在我的 sphinx 文档中包含任何章节。相反,我想在我的 pdf 输出中使用部分。
如何让 sphinx 生成从 \section
开始而不是 \chapter
的中间 .tex
输出?
在 conf.py
中输入以下选项:
latex_toplevel_sectioning = 'section'
我不想在我的 sphinx 文档中包含任何章节。相反,我想在我的 pdf 输出中使用部分。
如何让 sphinx 生成从 \section
开始而不是 \chapter
的中间 .tex
输出?
在 conf.py
中输入以下选项:
latex_toplevel_sectioning = 'section'