On Wed, 5 Aug 2009 23:33:40 -0700 (PDT)
Rene Bosch <[email protected]> wrote:

> 
> hello,
> I've seen a topic on this issue regarding integrals, with a ticket
> that apparently is closed in the meantime.
> I do see the problem still appearing in 4.1 for - in this case - the
> sqrt symbol.  Tried Mac OSX and on-line Sage.
> 
> Simple examples:
> When I type a simple "sqrt(2)"  I do get it typeset correctly with the
> square root symbol.
> But if I do a "solve(x^2-2,x)", I get:
> 
> [x==-sqrt(2), x==sqrt(2)]
> 
> It is typeset in the sense that it uses the Latex fonts, but no sqrt
> symbols are used.  This was working fine in version 3.

Thanks for reporting this. It seems that sequences are not typeset
anymore, even though we know how to typeset their elements:

sage: res = solve(x^2-2,x)
sage: res[0]
x == -sqrt(2)
sage: latex(res[0])
x = -\sqrt{2}
sage: latex(res)

\text{[
x == -sqrt(2),
x == sqrt(2)
]}


We're tracking this problem here:

http://trac.sagemath.org/sage_trac/ticket/6677

I also have a fix for it, though I can't upload it due to a problem
with the issue tracker. Hopefully the fix will be in the next release,
which should be out real soon now. :)


Cheers,
Burcin

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to