OUP BITS TCI

 

Section of a book part

Capture a section within a chapter or article in a sec element.

//sec[@id]

Give each sec element an id attribute.

Capture the title of the section in a title element

If the section has a subtitle, capture it in a subtitle element.

If the section has an enumerator, capture it in a label element. Do not capture terminal punctuation.

A section must always have at least one child other than title.

Capture a sub-section in a sec child of the sec element.

Capture a sec-type attribute if the section is indicated with a corresponding typecode. Allowed values of the sec-type attribute are:

  • answerKey
  • case-study
  • chapter-opener
  • chapter-summary
  • chronology
  • endNotes
  • key-terms
  • long-description-object
  • long-descriptions
  • reading
  • social-media-thread

Chapter Opener section

If the first section of a chapter is indicated with a typecode as a Chapter Opener, give its sec element an attribute sec-type="chapter-opener".

<book-part id="workid-UKRAI10JL5MB-book-part-2" book-part-type="chapter">
  <book-part-meta>
    <title-group>
      <label>1</label>
      <title>Honey Production</title>
    </title-group>
  </book-part-meta>
  <body>
    <sec sec-type="chapter-opener" id="workid-UKRAI10JL5MB-book-part-2-sec-1">
      <p>In this chapter we describe how bees produce honey.</p>
    </sec>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-2">
      <label>1.1</label>
      <title>The Hive</title>
      <p>...</p>
    </sec>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-3">
      <label>1.2</label>
      <title>The Drone</title>
      <p>...</p>
    </sec>
  </body>
</book-part>

Chapter Summary section

If a section of a chapter is indicated with a typecode as a Chapter Summary, give its sec element an attribute sec-type="chapter-summary".

<book-part id="workid-UKRAI10JL5MB-book-part-2" book-part-type="chapter">
  <book-part-meta>
    <title-group>
      <label>1</label>
      <title>Honey Production</title>
    </title-group>
  </book-part-meta>
  <body>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-1">
      <label>1.1</label>
      <title>The Hive</title>
      <p>...</p>
    </sec>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-2">
      <label>1.2</label>
      <title>The Drone</title>
      <p>...</p>
    </sec>
    <sec sec-type="chapter-summary" id="workid-UKRAI10JL5MB-book-part-2-sec-3">
      <title>Chapter Summary</title>
      <p>In this chapter you have learned how bees produce honey.</p>
    </sec>
  </body>
</book-part>

Key Terms section

If a section of a chapter is indicated with a typecode as a Key Terms section, give its sec element an attribute sec-type="key-terms".

<book-part id="workid-UKRAI10JL5MB-book-part-2" book-part-type="chapter">
  <book-part-meta>
    <title-group>
      <label>1</label>
      <title>Honey Production</title>
    </title-group>
  </book-part-meta>
  <body>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-1">
      <label>1.1</label>
      <title>The Hive</title>
      <p>...</p>
    </sec>
    <sec id="workid-UKRAI10JL5MB-book-part-2-sec-2">
      <label>1.2</label>
      <title>The Drone</title>
      <p>...</p>
    </sec>
  </body>
  <back>
    <sec sec-type="key-terms" id="workid-UKRAI10JL5MB-book-part-2-sec-3">
      <title>Key Terms</title>
      <list list-type="simple">
         <list-item>
            <p>argument</p>
         </list-item>
         <list-item>
            <p>statement</p>
         </list-item>
         [...]
      </list>
    </sec>
  </back>
</book-part>
Release ID:
20261202
ID:
section_of_a_chapter_or_article
Author:
dunnm
Last changed:
Wed, 04 Jun 2025
Modified by:
buckmasm
Revision#:
2908