<book-part-wrapper>

Book Part Wrapper

A wrapper element used to exchange a book part such as a chapter (<book-part>).

Attributes

Content Model

<!ELEMENT  book-part-wrapper
                        %book-part-wrapper-model;                    >

Expanded Content Model

(collection-meta*, book-meta, (book-part | xi:include | book-app | book-app-group | floats-group | index | index-group | ref-list | front-matter-part | foreword | preface | notes | ack | bio | dedication | fn-group | glossary | toc | toc-group))

Description

This top-level element may not be contained in any other elements.

Example 1

    
<book-part-wrapper 
  dtd-version="2.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink">

<book-meta>
<book-id book-id-type="DOI">10.1038/issn.1476-4857</book-id>
<book-id book-id-type="publisher-id">BITS-Test1</book-id>
<book-title-group>
<book-title>BITS DTD Test Book</book-title>
</book-title-group>
<contrib-group>...</contrib-group>
...
<pub-date iso-8601-date="2014"><year>2014</year></pub-date>
<isbn>1-234 567890-123</isbn>
<publisher>
<publisher-name>Mulberry Technologies, Inc.</publisher-name>
</publisher>
<edition designator="13">Thirteenth</edition>
<pub-history>...</pub-history>
<permissions>...</permissions>
<kwd-group kwd-group-type="author">...</kwd-group>
</book-meta>

<book-part 
  book-part-type="introduction"
  indexed="no" 
  seq="1" 
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink">
<book-part-meta>
<book-part-id book-part-id-type="publisher-id">
10.1038/issn.1476-4857/chp-intro</book-part-id>
<subj-group>...</subj-group>
<title-group>
<label>Chapter 1.</label>
<title>BITS Book Chapter for DTD Testing</title>
</title-group>
<contrib-group>...</contrib-group>
<pub-date iso-8601-date="2014"><year>2014</year></pub-date>
<pub-history>...</pub-history>
<permissions>...</permissions>
<abstract>...</abstract>
<kwd-group kwd-group-type="author">...</kwd-group>
<counts>...</counts>
</book-part-meta>
<body>...</body>
</book-part>

</book-part-wrapper>

   

Example 2

A book part with information about the collection that includes it:
     
<book-part-wrapper 
  dtd-version="2.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink">

<collection-meta>
<title-group>
<title>Balisage Series on Markup Technologies</title>
</title-group>
...
<abstract>
<p>The <italic>Balisage Series on Markup Technologies</italic> 
is an occasional series that includes the proceedings of 
conferences, symposia, and other markup-related events.</p>
</abstract>
</collection-meta>

<book-meta>
<book-title-group>
<book-title>Proceedings of Balisage: The Markup Conference 
2013</book-title>
</book-title-group>
...
<abstract>
<p>Balisage is a peer-reviewed conference designed to meet 
the needs of markup theoreticians and practitioners who are 
pushing the boundaries ...</p></abstract>
...
</book-meta>

<book-part 
  book-part-type="paper"
  indexed="yes" 
  seq="25" 
  xmlns:mml="http://www.w3.org/1998/Math/MathML"
  xmlns:xlink="http://www.w3.org/1999/xlink">
<book-part-meta>
<book-part-id book-part-id-type="doi">
10.4242/BalisageVol10.Nordstrom01</book-part-id>
<subj-group>...</subj-group>
<title-group>
<title>Semantic Profiling Using Indirection</title>
</title-group>
...
</book-part-meta>
<body>...</body>
</book-part>

</book-part-wrapper>