<title-wrap>
Title Wrapper
Container element to hold all the titles of a standards document: both components of the title such as introductory, main, or complementary titles as well as a full all-parts-present title.
Remarks
A given standards document may contain multiple <title-wrap> elements, for example, to provide the standard’s title in several languages, differentiating the <title-wrap> elements with different @xml:lang attributes.
Attributes
Model Description
The following, in order:
- Any combination of:
- Optionally any one of:
- Any combination of:
- <full> Full Title, zero or one
This element may be contained in:
Example 1
Title showing levels of complementary titles:
...
<title-wrap>
<intro>2015 ASME Boiler Pressure Vessel Code</intro>
<main-title-wrap>
<label>III</label>
<main>Rules for Construction of Nuclear Facility Components</main>
</main-title-wrap>
<compl level="1">Division 1</compl>
<compl-title-wrap level="2">
<compl>Subsection NH</compl>
<subtitle>Class 1 Components in Elevated Temperature Service</subtitle>
</compl-title-wrap>
<full>2015 ASME Boiler Pressure Vessel Code, Section III: Rules
for Construction of Nuclear Facility Components, Division 1,
Subsection NH: Class 1 Components in Elevated Temperature Service</full>
</title-wrap>
...
Example 2
Title of a co-produced standard:
...
<title-wrap>
<intro>Information Technology</intro>
<main-title-wrap>
<main>Telecommunications and information exchange between
systems</main>
<subtitle>Local and metropolitan area networks</subtitle>
</main-title-wrap>
<compl level="1">Technical reports and guidelines</compl>
<compl-title-wrap level="2">
<label>Part 5:</label>
<compl>Media Access Control (MAC) Bridging of Ethernet V2.0 in
Local Area Networks</compl>
</compl-title-wrap>
<full>Information Technology — Telecommunications and information
exchange between systems — Local and metropolitan area networks —
Technical reports and guidelines — Part 5: Media Access Control
(MAC) Bridging of Ethernet V2.0 in Local Area Networks</full>
</title-wrap>
...
Example 3
The same title in two languages requires two <title-wrap> elements:
... <iso-meta id="profile.int"> <title-wrap xml:lang="de"> <intro>Sicherheit von Maschinen</intro> <main>Sicherheitsbezogene Teile von Steuerungen</main> <compl>Teil 1: Allgemeine Gestaltungsleitsätze</compl> <full>Sicherheit von Maschinen — Sicherheitsbezogene Teile von Steuerungen — Teil 1: Allgemeine Gestaltungsleitsätze</full> </title-wrap> <title-wrap xml:lang="en"> <intro>Safety of machinery</intro> <main>Safety-related parts of control systems</main> <compl>Part 1: General principles for design</compl> <full>Safety of machinery — Safety-related parts of control systems — Part 1: General principles for design</full> </title-wrap> ... </iso-meta> ...