chakravala / Reduce.jl

Symbolic parser for Julia language term rewriting using REDUCE algebra

Home Page:http://www.reduce-algebra.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@latex with Rexpr errors

BeastyBlacksmith opened this issue · comments

julia> @latex RExpr(:n)
ERROR: LoadError: Reduce: 
rexpr($$$;
at line 1

***** Too few right parentheses 

Why do you want to use the @latex macro for that?

julia> latex(RExpr(:n))
"\\begin{displaymath}\nn\n\\end{displaymath}\n"

Probably better to just stick with a regular function call, since macro is not necessary for this.

mainly I was playing around and found that error message confusing