我正在尝试在此说明之后提出一个Jupyter记事本: https://medium.com/learning-machine-learning/present-your-data-science-projects-with-jupyter-slides-75f20735eb0f
我有想要滚动的大图,但是如果运行,滚动条不会出现
jupyter nbconvert test.ipynb --to slides --post serve --SlidesExporter.reveal_scroll=True
一个MWE就是这个单元格标记为幻灯片:
import matplotlib.pylab as plt
fig = plt.subplots(figsize=(10, 20))
我可以在浏览器中缩小以查看整个幻灯片,但是幻灯片将保留在bottom half of the screen中。
我如何滚动才能正常工作?
我正在运行nbconvert 5.4.0
。
感谢您的帮助!