Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of my favorite features of Emacs is the preview-latex package: it renders LaTeX equations in LaTeX documents as an inline graphic. Like this:

preview-latex screenshot

I'd like similar functionality in Emacs for Python comments and function docstrings. My docstrings have a lot of math in them:

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.
    ...

I'd like to write these in LaTex so that I when I browse my code, I can see rendered docstrings and comments.

Is there a way to do this or do I have to do surgergy on preview-latex?

share|improve this question
1  
Math support in Sphinx? – Andreas Röhler Nov 14 '12 at 7:09
didn't know about sphinx, andreas. thanks. but i'm looking for rendered equations in my python source while i'm editing it. sphinx is to what i want what preview-latex is to pdflatex. – moos Nov 15 '12 at 19:14

1 Answer

IIUC, there's a function in preview-latex that you can call to say "render the text between START and END as a LaTeX formula". If you ask David Kastrup, he'll tell you what that function is. So what's left to do is to detect which parts of your code you want rendered this way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.