我正在使用jupyter nbconvert模板(如here所述)尝试输出笔记本中除代码本身以外的所有内容。
this Stack Overflow answer中有一个建议的模板。
模板代码为
% Inherit from the article.tplx
((* extends 'article.tplx' *))
% remove inputs
((* block input_group *))
((* endblock input_group *))
我使用命令
jupyter nbconvert "mynotebook.ipynb" --template=mytemplate.tplx
但不是让我的笔记本不带代码输出,而是输出文字模板本身:
% Inherit from the article.tplx
((* extends 'article.tplx' *))
% remove inputs
((* block input_group *))
((* endblock input_group *))
我认为问题出在我的命令中,或者也许找不到正确的继承模板,但是我找不到任何有关如何改进命令或如何在nbconvert中正确指向模板的说明,请阅读文档。
有什么想法吗?