Ask Your Question

valentin's profile - activity

2019-07-27 14:34:10 +0200 received badge  Teacher (source)
2019-07-27 14:34:10 +0200 received badge  Necromancer (source)
2017-02-04 17:18:25 +0200 answered a question Is there a function to render latex or html in a notebook from a string ?

You may call MathJax directly and then render the result with the html command

x, y = var('x,y')
f(x,y) = x**2 + y**2
from sage.misc.latex import MathJax
mj = MathJax()
html(mj.eval(latex(f)))