[sage-devel] Re: gcc_fake in numpy - I've wasted countless hours on this!

2010-06-24 Thread Ryszard Wojciechowski
#3186 - fix 64 bit OSX build support for numpy On 24 Cze, 16:59, "Dr. David Kirkby" wrote: > William said the other day he was not aware of any fake gcc's. Well numpy has > a > really dumb one, which looks like someone tried to work around 64-bit issues > at > some time in the past. > > drkir..

[sage-devel] Re: Negative sign missing in latex output

2010-06-20 Thread Ryszard Wojciechowski
Seems to be related to #9086 - LaTeX representation of negative symbolic fractions broken (http://trac.sagemath.org/sage_trac/ticket/ 9086). -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups

[sage-devel] Negative sign missing in latex output

2010-06-19 Thread Ryszard Wojciechowski
Example: {{{ var('q r') fp = q / r fn = -q / r + r / -q print(fp) print(fn) show(fp) show(fn) html("$fp = %s$"%(latex(fp))) html("$fn = %s$"%(latex(fn))) }}} Output: {{{ q/r -q/r - r/q \newcommand{\Bold}[1]{\mathbf{#1}}\frac{q}{r} \newcommand{\Bold}[1]{\mathbf{#1}}\frac{q}{r} + \frac{r}{q} fp