<string-date>
Date as a String
Date represented as text.
Remarks
This element is typically used for dates for which months and years are not given (for example, “In apple blossom time”). While the <string-date> element may also be used for any date that is represented as a sequence of characters (i.e., “January, 2001”, “Fall 2001”, “March 11, 2001”), it is best practice, when possible, to tag the year, month, and/or day as numbers, so “January, 2001” would become:
... <month>01</month> <year iso-8601-date="2001-01">2001</year> ...
This Tag Set allows <string-date> both inside <date> and at the same level as <date>. This flexibility enables preservation of nearly any publisher’s structure.
Attributes
Content Model
<!ELEMENT string-date (#PCDATA %string-date-elements;)* >
Expanded Content Model
(#PCDATA | email | ext-link | uri | inline-supplementary-material | related-article | related-object | hr | bold | fixed-case | italic | monospace | overline | overline-start | overline-end | roman | sans-serif | sc | strike | underline | underline-start | underline-end | ruby | alternatives | inline-graphic | inline-media | private-char | chem-struct | inline-formula | tex-math | mml:math | abbrev | index-term | index-term-range-end | milestone-end | milestone-start | named-content | styled-content | fn | target | xref | sub | sup | x | day | era | month | season | year)*
Description
Any combination of:
- Text, numbers, or special characters
- Linking Elements
- Related Material Elements
- <hr> Horizontal Rule
- Emphasis Elements
- <bold> Bold
- <fixed-case> Fixed Case
- <italic> Italic
- <monospace> Monospace Text (Typewriter Text)
- <overline> Overline
- <overline-start> Overline Start
- <overline-end> Overline End
- <roman> Roman
- <sans-serif> Sans Serif
- <sc> Small Caps
- <strike> Strike Through
- <underline> Underline
- <underline-start> Underline Start
- <underline-end> Underline End
- <ruby> Ruby Annotation Wrapper
- <alternatives> Alternatives For Processing
- Inline Display Elements
- Inline Math Elements
- Other Inline Elements
- Internal Linking Elements
- Baseline Change Elements
- <x> X - Generated Text and Punctuation
- <day> Day
- <era> Era of Time
- <month> Month
- <season> Season
- <year> Year
This element may be contained in:
Example 1
Recording a lifecycle (history) date:
...
<date date-type="online" specific-use="metadata"
iso-8601-date="2012-05-03T08:47:08">
<string-date>2012-05-03T08:47:08</string-date>
</date>
...
Example 2
In an element-style bibliographic reference (punctuation and spacing removed):
...
<ref id="B12">
<label>[12 Lapeyre]</label>
<element-citation>
<string-name>Rene Lapeyre du Fontclaire Carnu, IV</string-name>
<article-title>Foraminifera of the Lower Hellstooth</article-title>
<source>Local Paleo</source>
<string-date iso-8601-date="1924">Some time before
<year>1924</year></string-date>
<publisher-loc>Rockville, MD</publisher-loc>
</element-citation>
</ref>
...