You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because @latexify MyDifference(2,1) does not evaluate the function MyDifference(), but is equivalent to latexify(:(MyDifference(2,1))) or latexify(Expr(:call, :MyDifference, 2, 1))). This is a feature, we don't want @latexify a + b to evaluate a + b.
To get around this, use @latexify $(MyDifference(2,1)).
The text was updated successfully, but these errors were encountered: