ipython笔记本有%%乳胶魔法细胞吗?

时间:2013-06-02 15:22:37

标签: latex ipython-notebook

我试图在ipython笔记本中呈现复杂的数学,而this answeripython notebook demonstrating the Rich Display System (scroll down to the bottom is is the last example)都提到了%%latex单元格的可用性。但是,在尝试制作乳胶细胞时,我收到以下错误,

  

错误:未找到单元魔术函数%%latex

我正在运行0.13.2版,我遗失了什么?我需要以某种方式导入这个神奇的功能吗?

1 个答案:

答案 0 :(得分:6)

%%latex魔术已在SciPy 12期间编写,0.13已在此日期发布(实际上SciPy 12“是释放的理由......)。由于0.13.x只有x>0只是错误修正,所以很有可能它没有进入其中。您应该能够向后移植,代码很简单,但需要在Magic System稍微改变时进行调整(IPython/core/magics/display.py,删除样板):

@cell_magic
def latex(self, line, cell):
    """Render the cell as a block of latex"""
    display(Latex(cell))