<table> Table

<table> is a wrapper element for formatting information for display in rows and columns.

It may occur within: <accessrestrict>, <accruals>, <acqinfo>, <altformavail>, <appraisal>, <arrangement>, <bibliography>, <bioghist>, <blockquote>, <controlaccess>, <controlnote>, <custodhist>, <dsc>, <fileplan>, <footnote>, <index>, <legalstatus>, <odd>, <originalsloc>, <otherfindaid>, <phystech>, <prefercite>, <processinfo>, <relatedmaterial>, <scopecontent>, <separatedmaterial>, and <userestrict>.

Attributes

  • @altrender – not required. Use if the content of the element should be displayed or printed differently than the rendering established in a style sheet for other occurrences of the element.
  • @audience – not required. Use to set whether the element’s contents will be visible to external users or to internal ones. Possible values are: “internal” and “external.”
  • @colsep – not required. May be used to specify a rule “true” (or “false” for no rule) which will print or display between each column (can be overriden at a lower level).
  • @frame – not required. Can be used to set whether or not the table will display a frame. The frame itself will have to be created via XSL and CSS. Possible values are: top, bottom, topbot, all, sides, none.
  • @id – not required. Creates an ID for element. Can be used for linking.
  • @lang – not required. Three-letter code that indicates the language in which the element’s contents were written. It should come from ISO 639-2b.
  • @pgwide – not required. May be used to specify whether the table runs the width of the page or the width of the column(s). “true” fills page, “false” (default) is only by column.
  • @rowsep – not required. May be used to specify a rule “true” (“false” for no rule) which will print or display below each row (can be overriden within the rows).
  • @script – not required. Four-letter code that indicates the script in which the element’s contents were written. It should come from ISO 15924.

Child Elements

<table> may contain <head> and must contain at least one <tgroup>.

Examples

<table frame="all" colsep="true" rowsep="true">
  <tgroup align="center" cols="3">
    <colspec colname="materialtype" colnum="1"/>
    <colspec colname="usetype" colnum="2"/>
    <colspec colname="permissionrequired" colnum="3"/>
    <thead valign="middle">
      <row>
        <entry colname="materialtype">Material Type</entry>
        <entry colname="usetype">Use Type</entry>
        <entry colname="permissionrequired">Permission Required</entry>
      </row>
    </thead>
    <tbody valign="middle">
      <row>
        <entry colname="materialtype">Event recordings, 1980-2008</entry>
        <entry colname="usetype">File copying or other duplication of audio or visual content</entry>
        <entry colname="permissionrequired">Requires permission of the speakers or copyright holders as no waivers or permission slips were obtained</entry>
      </row>
      <row>
        <entry colname="materialtype">Event recordings, 2009-</entry>
        <entry colname="usetype">File copying or other duplication of audio or visual content</entry>
        <entry colname="permissionrequired">Consult with the archivist for waivers which contain specific guidance by each speaker for the duplication and use of each recording. Speakers were given the following options: to restrict duplication entirely, to allow duplication for personal research use, to allow duplication for personal research use and teaching, or to freely allow duplication and use of the materials. These permissions were obtained separately from streaming permissions and copies of the video streaming in the university's YouTube channel should not be interpreted as license to duplicate.</entry>
      </row>
    </tbody>
  </tgroup>
</table>

Changes from EAD 2002

<table> gained attributes @lang and @script.

EAD3 Tag Library Entry

View the official tag library entry for <table>