我使用以下命令将jupyter笔记本转换为幻灯片:
jupyter nbconvert Jupyter\ "test.ipynb" --to slides --reveal-prefix "https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0"
现在,我有一个html幻灯片文件,可以看到我的幻灯片。如何删除/减少每张幻灯片右侧和左侧的白色边框?
我的问题不同于增加Jupyter / ipython笔记本How do I increase the cell width of the Jupyter/ipython notebook in my browser?的单元格宽度
我进行了很多搜索,但未能找到此问题的答案。感谢您的帮助。
答案 0 :(得分:1)
将custom.css
文件添加到您在其中运行命令的文件夹中,其内容应类似于:
.slides {
width: 90% !important;
}
请谨慎调整太多样式并设置!important
标志,因为您可以在转换后的笔记本中的其他地方快速获得意外行为。