Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Multiple tables in Notebook's output?

Hi!

Trying to print more than one table in the output of Sage's Notebook cell, with fancy-printing:

table([[0]])
table([[1]])

but only the last one is shown (checked in Firefox and Chrome in Linux). Currently found workaround is:

html.table([[0]])
html.table([[1]])

but it gives a deprecation warning, or:

html(table([[0]])._html_() + table([[0]])._html_())

which seems to work fine.