EAD (Encoded Archival Description ; Version 2002 Official Site)

Encoded Archival Description Tag Library, Version 2002

EAD Elements

<table> Table

Description:

A wrapper element for formatting information in a row and column display.

The application of the <table> element is based on the XML Exchange Table Model, an XML expression of the Exchange subset of the full CALS table model DTD. This model is promulgated by the Organization for the Advancement of Structured Information Standards (OASIS) to promote interoperability among vendor products.

May contain:

head, tgroup

May occur within:

accessrestrict, accruals, acqinfo, altformavail, appraisal, arrangement, bibliography, bioghist, blockquote, controlaccess, custodhist, daodesc, descgrp, div, dsc, dscgrp, event, extref, extrefloc, fileplan, index, item, note, odd, originalsloc, otherfindaid, p, phystech, prefercite, processinfo, ref, refloc, relatedmaterial, scopecontent, separatedmaterial, titlepage, userestrict

Attributes:

ALTRENDER #IMPLIED, CDATA
AUDIENCE #IMPLIED, external, internal
COLSEP #IMPLIED, NMTOKEN
FRAME #IMPLIED, top, bottom, topbot, all, sides, none
ID #IMPLIED, ID
PGWIDE #IMPLIED, NMTOKEN
ROWSEP #IMPLIED, NMTOKEN

Example:

    <table frame="none">
        <tgroup cols="3">
            <colspec colnum="1" colname="1" align="left" colwidth="50pt"/>
            <colspec colnum="2" colname="2" align="left" colwidth="50pt"/>
            <colspec colnum="3" colname="3" align="left" colwidth="50pt"/>
            <thead>
                <row>
                    <entry colname="1">Major Family Members</entry>
                    <entry colname="2">Spouses</entry>
                    <entry colname="3">Children</entry>
                </row>
            </thead>
            <tbody>
                <row>
                    <entry colname="1">John Albemarle (1760-1806)</entry>
                    <entry colname="2">Mary Frances Delaney (1769-1835)</entry>
                    <entry colname="3">John Delaney Albemarle (1787-1848)</entry>
                </row> . . .
            </tbody>
        </tgroup>
    </table>