Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

03.05 Table design

stuindhamma edited this page Jul 29, 2014 · 1 revision

The essence of the site is the tables of correspondences and design of the SC start with them by following the principles of typesetting tables:

● Never, ever use vertical lines.

● Give the data space to breathe.

● Data comes first (not fancy design).

For more information, refer to the following article http://ctan.unsw.edu.au/macros/latex/contrib/booktabs/booktabs.pdf

The only visible structure for the tables is a thin grey line. This is enough to organize the data, while the eye is drawn to the text.

Tables are by default fluid in HTML, so they will, within reason; resize themselves to fit the screen.

The tables now use the full semantic markup made available by HTML5. Here is the template, with annotations.

<table> <caption></caption> (Defines table caption.) <thead> (Groups the items in the first row of the table.) <tr> (Header row.) <th></th> (Header cell.) <th></th> </tr> </thead> <tbody> (Groups the main table data.) <tr> (Row.) <td></td> (Cell.) <td></td> <tr> <tr> <td></td> <td></td> <tr> </tbody> <tfoot> (Defines footer area, usually used for footnotes.) <tr colspan="2"> <td><td> (Notes.) <tr> </tfoot> </table>

Clone this wiki locally