我最喜欢的 Emacs 功能之一是 preview-latex 包:它将 LaTeX 文档中的 LaTeX 方程呈现为内联图形。像这样:
我想在 Emacs 中为 Python 注释和函数文档字符串提供类似的功能。我的文档字符串中有很多数学:
def proj_levenberg(x,y,wsqrt,A):
"""
Finds a homography between two sets of 2d points.
Specifically, approximately minimize the weighted image plane
error
min_A sum_{X,y,w} w ||(A_12 x_) / (A_3 x_) - y||^2
where x_=[x;1], A_12 are the first two rows of A and A_3 is the
third row of A.
...
我想用 LaTex 写这些,这样当我浏览我的代码时,我可以看到渲染的文档字符串和注释。
有没有办法做到这一点,还是我必须在预览乳胶上做手术?