|   | 1 |  initial version  | 
Note that now Sage has a table object which can be printed as LaTeX. As per the example in the documentation:
  sage: rows = [['a', 'b', 'c'], [100,2,3], [4,5,60]]
  sage: table(rows)
    a     b   c
    100   2   3
    4     5   60
  sage: latex(table(rows))
  begin{tabular}{lll}
  a & b & c 
  $100$ & $2$ & $3$ 
  $4$ & $5$ & $60$ 
  end{tabular}
 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.
 
                
                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.