Created
March 22, 2013 21:35
-
-
Save ntrrgc/5224945 to your computer and use it in GitHub Desktop.
Magic for printing LaTeX math in IPython
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from IPython.core.magic import line_magic | |
from IPython.display import Math | |
@register_line_magic | |
def math(tex): | |
return Math(repr(eval(tex, get_ipython().user_ns))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment