| 1 | initial version |
This doesn't look too bad:
sage: var('x y z alpha')
sage: L = [x == y^2, z+alpha^3 == 0]
view(L, viewer='pdf')
Alignment on equals signs is trickier, but the following works in the notebook. With L as above, create a cell containing this:
%latex
Here are the equations:
\begin{align*}
\sage{L[0].left_hand_side()} &= \sage{L[0].right_hand_side()} \\
\sage{L[1].left_hand_side()} &= \sage{L[1].right_hand_side()}
\end{align*}
There is probably a way to autogenerate this code in the notebook.
The patch at http://trac.sagemath.org/sage_trac/ticket/13131 might also help.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.