在使用创建的 ipython 笔记本(jupyter)幻灯片中
ipython nbconvert presentation.ipynb --to slides --post serve
图像质量很差,因为它们似乎被缩小到页面宽度。如何在演示文稿中增加页面宽度/显示更大的图像?
我在这里找到了部分答案,但这需要手动执行“--post serve”部分,我找不到任何文档。
在使用创建的 ipython 笔记本(jupyter)幻灯片中
ipython nbconvert presentation.ipynb --to slides --post serve
图像质量很差,因为它们似乎被缩小到页面宽度。如何在演示文稿中增加页面宽度/显示更大的图像?
我在这里找到了部分答案,但这需要手动执行“--post serve”部分,我找不到任何文档。
经过长时间的搜索,我自己找到了答案:
复制模板文件从
lib/python2.7/site-packages/nbconvert/templates/html/slides_reveal.tpl
到笔记本的目录。
自定义它,例如,在Reveal.initialize({ })
添加
width: '80%',
height: '100%',
transition: 'concave',
跑
jupyter nbconvert presentation.ipynb --to slides --template slides_reveal.tpl --post serve
要不就
jupyter nbconvert presentation.ipynb --to slides --template slides_reveal.tpl
然后presentation.slides.html
直接在浏览器中打开。或者:
python -m SimpleHTTPServer
并将浏览器导航到
http://127.0.0.1:8000/presentation.slides.html