EAD (Encoded Archival Description ; Version 2002 Official Site)

Encoded Archival Description Tag Library, Version 2002

EAD Elements

<entry> Table Entry

Description:

A formatting element that designates the contents of a cell in a table. A cell is the intersection of a row and a column. The <entry> attributes control cell spanning, alignment of the contents, and the rules on the cell edges. The attributes can be specified for <entry> or inherited from the nearest of the following table elements: <table>, <tgroup>, <colspec>, <tbody>, or <row>.

Three attributes are used together to force horizontal alignment on a specific character, such as a decimal point. The ALIGN attribute must be set to "char" (align="char"). The CHAR attribute should be set to the specific character on which the text will align (for example the decimal point, char="."). The CHAROFF attribute controls the position of the alignment by naming the percentage of the current column width that is to the left of the alignment character (for example, charoff="30").

The extent of a horizontal span is determined by naming the first column (NAMEST) and the last column (NAMEEND) in the span.

By convention, the specified rule is printed or displayed to the right of the column. External rules are specified using the FRAME attribute of the <table> element, horizontal rules are specified using ROWSEP.

May contain:

#PCDATA, abbr, address, archref, bibref, corpname, date, emph, expan, extptr, extref, famname, function, genreform, geogname, lb, linkgrp, list, name, note, num, occupation, origination, persname, ptr, ref, repository, subject, title, unitdate, unittitle

May occur within:

row

Attributes:

ALIGN #IMPLIED, left, right, center, justify, char
ALTRENDER #IMPLIED, CDATA
AUDIENCE #IMPLIED, external, internal
CHAR #IMPLIED, CDATA
CHAROFF #IMPLIED, NMTOKEN
COLNAME #IMPLIED, NMTOKEN
COLSEP #IMPLIED, NMTOKEN
ID #IMPLIED, ID
MOREROWS #IMPLIED, NMTOKEN
NAMEEND #IMPLIED, NMTOKEN
NAMEST #IMPLIED, NMTOKEN
ROWSEP #IMPLIED, NMTOKEN
VALIGN #IMPLIED, top, middle, bottom

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>