EAD (Encoded Archival Description ; Version 2002 Official Site)

Encoded Archival Description Tag Library, Version 2002

EAD Elements

<row> Table Row

Description:

A formatting element that contains one or more <entry> elements (horizontal cells) in a table.

By convention, a rule specified by the ROWSEP attribute prints or displays below the row. Vertical rules are specified by the COLSEP attribute in <table> or one of its column-related subelements; external rules are specified by the FRAME attribute available on the <table> element.

See also related elements <table>, <tbody>, <tgroup>, and <thead>.

May contain:

entry

May occur within:

tbody, thead

Attributes:

ALTRENDER #IMPLIED, CDATA
AUDIENCE #IMPLIED, external, internal
ID #IMPLIED, ID
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>