I am new in Julia and using Symbolics. I wanna make Latex output. In Symbolics' docs there is an easy example:
using Latexify
latexify(A) # A - some symbolic expression
And in their example they have a beautiful Latex output. But in my case I have Latex code as output.
julia> expr = 2x + y^2
2x + y^2
julia> latexify(expr)
L"\begin{equation*}
2 x + y^{2}
\end{equation*}
"
How can I fix it?
