我正在使用 IPython notebook 来创建一些教程。完成后,我需要将它们转换为 Latex/PDF 和 html/blogger。但我面临两个问题。
1 - 添加静态图像。
我将不得不在教程中添加一些图像。首先,我尝试IPython.display.Image
上课。但是这些命令也显示在乳胶中,我不喜欢。然后我尝试在 markdown 区域中插入图像到 IPython notebook markdown中。但是图像在 ipynb 和 Latex 中都没有显示。
那么在 IPN 中添加可以转换为 Latex 和 html 的图像的最佳方法是什么?
2 - 转换为 Latex 和 html
我尝试了在IPython 笔记本中指定的方法到 html 的博客文章?,但它不起作用。它抛出一个错误:
[NbconvertApp] Bad config encountered during initialization:
[NbconvertApp] Unrecognized flag: '-f'
然后我尝试不带-f
标志,然后出现以下错误:
[NbconvertApp] Config file for profile 'latex' not found, giving up
到目前为止对我有用的是下面给出的那个,也仅适用于 pdf:
python nbconvert2.py latex_sphinx_howto Test1.ipynb
那么我怎样才能成功地转换我的笔记本 html 和 Latex 呢?