| 1 | initial version |
var('x y z alpha') eqns = [x == y^2, z+alpha^3 == 0] table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ] html.table(table)
| 2 | No.2 Revision |
var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
| 3 | No.3 Revision |
You can use html.table placing left hand side, equal sign and right hand side in seperate columns.
var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)
| 4 | No.4 Revision |
You can use html.table placing left hand side, equal sign and right hand side in seperate separate columns.
var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)
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.