On Oct 18, 8:06 am, Johannes <dajo.m...@web.de> wrote:
> hi list
> I have this simple code:
>
> latex(matrix([[-(a + 1)/b]]))
>
> and i get:
>
> \left(\begin{array}{r}
> \frac{-a + 1}{b}
> \end{array}\right)
>
> but it should be
>
> \left(\begin{array}{r}
> \frac{-a - 1}{b}
> \end{array}\right)
>
> or
>
> \left(\begin{array}{r}
> \frac{-(a + 1)}{b}
> \end{array}\right)
>
> greatz Johannes

This seems to be broken in Sage 4.5.3, but it works in Sage
4.6.alpha3:

sage: latex(matrix([[-(a + 1)/b]]))
\left(\begin{array}{r}
-\frac{a + 1}{b}
\end{array}\right)

--
John

-- 
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.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to