Skip to main content

The PreTeXt Guide

Chapter 20 Tables

After <sidebyside>, getting tables to lay out consistently between HTML and PDF is probably the second biggest headache that PreTeXt takes care of for us behind the scenes. Considerable effort has been taken in order to fix some of the challenges inherent to working with the tabular environment in , and so if you author in PreTeXt, you should be able to forget the hacks you had to learn to make nice tables in .
Tables should only be used to display data. Too often in other authoring systems, tables are used as a crutch to facilitate the visual layout of a page. Do not do that when authoring PreTeXt. A good question to ask yourself before using a <tabular> is “Do the \(xy\)-coordinates of a cell have semantic meaning in terms of my data?” If the answer is “yes”, then make an array of numbers with <tabular>. If not, find a more suitable tag. (Perhaps <sidebyside> and/or <sbsgroup>.) One of the many reasons for this is that screen readers used by individuals with visual impairments read tables in a very specific way that assumes the \(xy\)-coordinates of each cell are contributing to the meaning. Individuals who use screen readers will find a document that uses tables to do something other than present tabular data very confusing and frustrating.
Similar to , PreTeXt provides a <table> tag and a <tabular> tag. The <tabular> tag is used for producing the array of data, while the <table> tag provides the number and title.
<table>
  <title>A simple table</title>
  <tabular halign="center">
    <row header="yes" bottom="minor" >
      <cell>Variable <m>x</m></cell>
      <cell>Variable <m>y</m></cell>
      <cell>Conjunction <m>x\wedge y</m></cell>
      <cell>Disjunction <m>x\vee y</m></cell>
    </row>
    <row>
      <cell>T</cell>
      <cell>T</cell>
      <cell>T</cell>
      <cell>T</cell>
    </row>
    <row>
      <cell>T</cell>
      <cell>F</cell>
      <cell>F</cell>
      <cell>T</cell>
    </row>
    <row>
      <cell>F</cell>
      <cell>T</cell>
      <cell>F</cell>
      <cell>T</cell>
    </row>
    <row>
      <cell>F</cell>
      <cell>F</cell>
      <cell>F</cell>
      <cell>F</cell>
    </row>
  </tabular>

</table>
Listing 20.0.1. Code to produce a table
The code in Listing 20.0.1 produces the following output:
Table 20.0.2. A simple table
Variable \(x\) Variable \(y\) Conjunction \(x\wedge y\) Disjunction \(x\vee y\)
T T T T
T F F T
F T F T
F F F F
Much like <image>, you can use <tabular> on its own to lay out a table of data, centered on a line, between (for instance) a couple of <p> elements. In many cases, the sort of data layout generated using <tabular> functions more as a figure than a table according to the definitions in the Chicago Manual of Style [1] (CMOS), which PreTeXt attempts to follow in the absence of other guiding principles. The quote below from David Farmer on the pretext-dev Google Group
 1 
groups.google.com/g/pretext-dev/c/w1e4dERKZ6M/m/gt_WhA9sCAAJ
provides guidance on deciding if your <tabular> should be contained in <figure> or <table>.
“There is an entire chapter on tables in CMOS, so I’ll try to summarize how those are distinct from many uses of grids of numbers in PreTeXt. Some approximate quotes about tables from CMOS:
  • facts that are easy to scan and compare
  • a reader unfamiliar with the material should still be able to make sense of the table
  • tables are numbered and have titles (and not captions)
My take-away is that a CMOS table is a supplement to what is written in the text and at any one time only a small amount of the table is relevant. Rephrasing: a CMOS table is not intended to be integrated with the narrative of the book, and the reader is not supposed to pore over a large fraction of the table when it is first encountered.”
―David Farmer
In reality, the <tabular> in Listing 20.0.1 really should be contained in <figure> (and then the <title> must become a <caption>). Perhaps someday we will come up with an example <tabular> that meets the CMOS definition of a table to use instead.
See Section 4.18 for more information about how to make more complicated tables including formatting columns and vertical and horizontal rules.