我在学校的一个项目中使用Jupyter Notebook for Python。我想将笔记本转换为PDF文件。我安装了nbconvert并使它工作。唯一的问题是我希望pdf看起来完全像笔记本本身,即包括输入和输出单元格周围的边框。当我在单元格中使用markdown注释我的工作时,间距也是错误的。当我转换为html时效果很好,但是我需要一个pdf。
tl; dr:我希望PDF文件包含单元格周围的边框。
答案 0 :(得分:2)
尝试使用nbconvert的模板系统。
已经有一个可以使用的模板 https://github.com/t-makaro/nb_pdf_template
pip install nb_pdf_template
python -m nb_pdf_template.install
jupyter nbconvert --to pdf filename.ipynb --template classic