We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cc @alanedelman
The text was updated successfully, but these errors were encountered:
@korsbo has a switch in Latexify for \cdot and all of that IIRC
Sorry, something went wrong.
latexify(ex; cdot=false) might do what you want. Is that not already set as a default in https://github.com/JuliaSymbolics/Symbolics.jl/blob/0eddc02c4d9d78a795e5626bd68d5c65add87e0e/src/latexify_recipes.jl#L25 or are you trying to latexify something else?
latexify(ex; cdot=false)
This seems to be fixed. SymbolicUtils does not support Latexify. And Symbolics correctly latexifies it to xy:
Latexify
Symbolics
xy
julia> using Symbolics julia> @variables x y 2-element Vector{Num}: x y julia> using Latexify julia> latexify(x*y) L"\begin{equation} x y \end{equation} "
No branches or pull requests
cc @alanedelman
The text was updated successfully, but these errors were encountered: