我试图在ipython笔记本中呈现复杂的数学,而this answer和ipython notebook demonstrating the Rich Display System (scroll down to the bottom is is the last example)都提到了%%latex
单元格的可用性。但是,在尝试制作乳胶细胞时,我收到以下错误,
错误:未找到单元魔术函数
%%latex
。
我正在运行0.13.2版,我遗失了什么?我需要以某种方式导入这个神奇的功能吗?
答案 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))