SAA-SDT / EAS-TagLibraries

Tag Libraries for Encoded Archival Description Version 3 and Encoded Archival Context: Corporate Bodies, Persons, and Families
7 stars 5 forks source link

EAD3 examples review and cleanup - here: sub-elements of <table> #39

Closed kerstarno closed 4 years ago

kerstarno commented 5 years ago

Creator of issue

  1. Kerstin Arnold
  2. TS-EAS EAD team lead
  3. @kerstarno

The issue relates to

Wanted change/feature

alexduryee commented 5 years ago

Potentially reuse the entry table example, which contains colspec/row

CaitlinRizzo commented 5 years ago

@kerstarno Here are suggested examples for colspec, tgroup, thead, and row.

Example for <colspec>, <tgroup>, and <row> (repurposed from EAD2002 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>

Example for <thead>(includes <colspec>, <row>, and <tgroup> as well):

<table frame="all" colsep="true" rowsep="true">
    <head>Dates of Existence for Local Chapters</head>
    <tgroup align="center" cols="3">
        <colspec colname="chaptertitle" colnum="1"/>
        <colspec colname="yearformed" colnum="2"/>
        <colspec colname="yeardisbanded" colnum="3"/>
        <thead valign="middle">
            <row>
                <entry colname="chaptertitle">Chapter Title</entry>
                <entry colname="yearformed">Year Formed</entry>
                <entry colname="yeardisbanded">Year Disbanded</entry>
            </row>
        </thead>
        <tbody valign="middle">
            <row>
                <entry colname="chaptertitle">Local Chapter 543</entry>
                <entry colname="yearformed">1923</entry>
                <entry colname="yeardisbanded">1967</entry>
            </row>
        </tbody>
    </tgroup>
</table>