Publication history
Capture details of the publication history of a chapter or article in the pub-history element.
//book-part[@book-part-type = "chapter"]/book-part-meta/pub-history
//book-part[@book-part-type = "collection-article"]/book-part-meta/pub-history
When a chapter or article is updated to create a new version, capture a new event element with attribute event-type="version" within pub-history.
Capture the version number in a event-desc element with attribute specific-use="version-number" within the event element.
The version number is 1
for the first updated version after initial publication,
2
for the next update, etc.
Capture the version date in a pub-date element within the event element.
Capture the description of the changes in the version in a notes element within the event element.
A heading for this text will be generated on publication, so the description needs no accompanying heading in the XML.
When a chapter or article is reviewed but not updated, capture the date of the review in a date element within pub-history.
Updated to a new version
<pub-history>
<event event-type="version">
<event-desc specific-use="version-number">2</event-desc>
<pub-date iso-8601-date="2016-03-05">
<day>05</day>
<month>03</month>
<year>2016</year>
</pub-date>
<notes>
<p>Added date of marriage to Kim Kardashian.</p>
</notes>
</event>
</pub-history>
Reviewed but not updated
<pub-history>
<date date-type="reviewed">
<day>31</day>
<month>10</month>
<year>2018</year>
</date>
</pub-history>
Updated to a new version, then later reviewed but not updated
<pub-history>
<date date-type="reviewed">
<day>31</day>
<month>10</month>
<year>2018</year>
</date>
<event event-type="version">
<event-desc specific-use="version-number">2</event-desc>
<pub-date iso-8601-date="2016-03-05">
<day>05</day>
<month>03</month>
<year>2016</year>
</pub-date>
<notes>
<p>Added date of marriage to Kim Kardashian.</p>
</notes>
</event>
</pub-history>