Sometimes people use julia behind a jupyter server and it would be nice to add latex output for Mathematica outout. ```julia import Base.show Base.show(io,::MIME"text/latex",x::MathLink.WExpr) = print(io,weval(W`ToString@TeXForm[#]&`(x))) ```