In Microsoft Office OneNote 2010, creating and editing tables is easy. There are simple toolbar controls for creating tables:
,
and editing them once they exist:
.
My question is, what's an easy way to get the same functionality for a Mathematica notebook?
I would like to be able to create tables containing text, images, or inline math writing. Editing a cell in a table should be just like editing the contents of a text cell. Ideally, the appearance of the table would be customizable, e.g. cell border and background colors.
Answer
Mathematica already has some of these features: e.g
Regarding your comment about the appearance when you do this in a text cell. Here is what it looks like for me on a Mac:
So the font is Courier which, unless you have reconfigured your system, is not the default font for text cells. You can fix this by changing the grid box options: To do this -- in a menu driven way -- click on the cell bracket and go to Format > Option Inspector and type gridbox in the search field then when presented with the options edit the BaseStyle
Here I've changed the font to Times and you can see the change in the input cell. Note that you have also commented about alignments. You can set the grid alignments the same way. I'd suggest that you read up on various alignment points in the Grid
documentation.
You are probably already thinking that this is inconvenient to do regularly so instead you can set up your own Grid
style in a style sheet. The downside to that is that this will style Grid
the same in all cells. So in fact what you need to do is create a stylesheet with a modified Text
style:
Stylesheeting is beyond the scope if this Q&A but if you search you will find information about how to go about this. I'd suggest this is your best option for regular routine use.
Finally, to style tables and output a set of rules for later use a demo can be seen here from which a slightly reduced set of features can be downloaded.
Comments
Post a Comment