Basic Structure of the Encoding of Tables

Tables are tagged with the <table> element. The table contents are displayed line by line (<row>). Each line is again divided into cells (<cell>). If the table has a title, it is enclosed with a <head> element.

<table>
      <head>[table title (if applicable)]</head><!-- where available -->
  <row>
  <cell>[text of a table cell]</cell>
  <cell>[text of a table cell]</cell>
  </row>
  ...
</table>

Overviews in tabular form, which contain no or only little pure text (e. g. mainly consisting of numbers and special characters), are not included. Instead, an empty table indicates the respective overview:

<table><row><cell/></row></table>

Table Encoding (1)

<table>
  <row>
    <cell/>
    <cell>Perſonen</cell>
    <cell>Prozent der Be-<lb/>völkerung</cell>
  </row><lb/>
  <row>
    <cell>in London</cell>
    <cell>2401955</cell>
    <cell>62,9</cell>
  </row><lb/>
  <row>
    <cell>in der nächſten Umgebung</cell>
    <cell>384871</cell>
    <cell>10,1</cell>
  </row><lb/>
  <row>
    <cell>in andern Teilen von Eng-<lb/>land und Wales</cell>
    <cell>787699</cell>
    <cell>20,6</cell>
  </row><lb/>
  <row>
    <cell>in Schottland</cell>
    <cell>49554</cell>
    <cell>1,3</cell>
  </row><lb/>
  <row>
    <cell>in Irland</cell>
    <cell>80778</cell>
    <cell>2,1</cell>
  </row><lb/>
  <row>
    <cell>in andern Ländern</cell>
    <cell>111626</cell>
    <cell>2,9</cell>
  </row><lb/>
</table>

Source: Bücher, Karl: Die Entstehung der Volkswirtschaft. Sechs Vorträge. Tübingen, 1893. [Facsimile 299]

Table Encoding (2)

<table>
  <row>
    <cell/>
    <cell>Dauer der<lb/>ganzen<lb/>Periode</cell>
    <cell>Ausweichung<lb/>von der<lb/>Sonne beim<lb/>Stillſtand</cell>
    <cell>Bogen des<lb/>Rückgangs</cell>
    <cell>Dauer des<lb/>Rückgangs</cell>
  </row><lb/>
  <row>
    <cell>Mars</cell>
    <cell>780,<hi rendition="#sub">4</hi> Tage</cell>
    <cell>137 Grade</cell>
    <cell>14 Grade</cell>
    <cell>70 Tage</cell>
  </row><lb/>
  <row>
    <cell>Jupiter</cell>
    <cell>398,<hi rendition="#sub">8</hi></cell>
    <cell>117</cell>
    <cell>10</cell>
    <cell>119</cell>
  </row><lb/>
  <row>
    <cell>Saturn</cell>
    <cell>378,<hi rendition="#sub">0</hi></cell>
    <cell>108</cell>
    <cell>7</cell>
    <cell>136</cell>
  </row><lb/>
  <row>
    <cell>Uranus</cell>
    <cell>369,<hi rendition="#sub">7</hi></cell>
    <cell>102</cell>
    <cell>4</cell>
    <cell>150</cell>
  </row><lb/>
</table>

Source: Littrow, Joseph Johann von: Die Wunder des Himmels, oder gemeinfaßliche Darstellung des Weltsystems. Bd. 1. Stuttgart, 1834. [Facsimile 228]

Note: By means of a @facs attribute in the table element it can be referenced to the original figure of the table. This can be useful if complex tables cannot be included or replicated completely for reasons of efficiency.