Skip to content

Instantly share code, notes, and snippets.

@ntrrgc
Created March 22, 2013 21:35
Show Gist options
  • Save ntrrgc/5224945 to your computer and use it in GitHub Desktop.
Save ntrrgc/5224945 to your computer and use it in GitHub Desktop.
Magic for printing LaTeX math in IPython
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