Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Issue Printing Tables in Jupyter Notebook

I've been trying to display some tables in sage, in particular I would like to display tables that contain matrices as nice output in a jupyter notebook.

I seem to not be able to get table to work at all. In particular, if I open a new notebook and run the chunk

%display latex
blah = [('A', 'B', 'C'), (0, 1, 2), (3, 4, 5), (6, 7, 8)]
table(blah)

It returns

PGRpdiBjbGFzcz0ibm90cnVuY2F0ZSI+Cjx0YWJsZSAgY2xhc3M9InRhYmxlX2Zvcm0iPgo8dGJvZHk+Cjx0ciBjbGFzcyA9InJvdy1hIj4KPHRkPkE8L3RkPgo8dGQ+QjwvdGQ+Cjx0ZD5DPC90ZD4KPC90cj4KPHRyIGNsYXNzID0icm93LWIiPgo8dGQ+PHNjcmlwdCB0eXBlPSJtYXRoL3RleCI+MDwvc2NyaXB0PjwvdGQ+Cjx0ZD48c2NyaXB0IHR5cGU9Im1hdGgvdGV4Ij4xPC9zY3JpcHQ+PC90ZD4KPHRkPjxzY3JpcHQgdHlwZT0ibWF0aC90ZXgiPjI8L3NjcmlwdD48L3RkPgo8L3RyPgo8dHIgY2xhc3MgPSJyb3ctYSI+Cjx0ZD48c2NyaXB0IHR5cGU9Im1hdGgvdGV4Ij4zPC9zY3JpcHQ+PC90ZD4KPHRkPjxzY3JpcHQgdHlwZT0ibWF0aC90ZXgiPjQ8L3NjcmlwdD48L3RkPgo8dGQ+PHNjcmlwdCB0eXBlPSJtYXRoL3RleCI+NTwvc2NyaXB0PjwvdGQ+CjwvdHI+Cjx0ciBjbGFzcyA9InJvdy1iIj4KPHRkPjxzY3JpcHQgdHlwZT0ibWF0aC90ZXgiPjY8L3NjcmlwdD48L3RkPgo8dGQ+PHNjcmlwdCB0eXBlPSJtYXRoL3RleCI+Nzwvc2NyaXB0PjwvdGQ+Cjx0ZD48c2NyaXB0IHR5cGU9Im1hdGgvdGV4Ij44PC9zY3JpcHQ+PC90ZD4KPC90cj4KPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+

which appears to be some sort of hash value? I can't find anything on this to help debug.

For reference, I'm still running sage 8.4. The environments on the system I'm working on are a little messed up, so I could update to the newest version if there is reason to believe that's the issue, but I would rather not if I can avoid it.