[sage-support] Re: Mathematical Expression to latex-code-conversion

2007-10-24 Thread mabshoff
On Oct 24, 7:15 pm, marko [EMAIL PROTECTED] wrote: Hello, I am quite new to SAGE but I think I've found a problem with the latex(math-expression) command. I've tried with version 2.8.6, 2.8.7 and 2.8.8.1: The problem seems to be the abs() command. Take any function like f(x)=2*abs(x)

[sage-support] Re: Mathematical Expression to latex-code-conversion

2007-10-24 Thread Mike Hansen
Hello, I've fixed this issue and have included the patch below. It will be in the next release which should be come out in the next few days. Here is the behavior after the patch: sage: g(x) = 2*abs(x) sage: latex(g) x \ {\mapsto}\ {2 \cdot \left| x \right|} --Mike