◇◆
<sec> Section
Headed group of material; the basic structural unit of the body of a document.
Usage/Remarks
A very short book or chapter may contain nothing but paragraphs (and other paragraph-level
elements such as figures and tables), but most books and book components are divided
into either titled book parts (<book-part>) or titled sections (<sec>).
Models and Context
May be contained in
Description
The following, in order:
- <object-id> Object Identifier, zero or more
- <sec-meta> Section Metadata, zero or one
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- <title> Title, zero or one
- <subtitle> Document Subtitle, zero or more
- <alt-title> Alternate Title, zero or more
- Any combination of:
- <address> Address/Contact Information
- <alternatives> Alternatives For Processing
- <answer> Answer to a Question
- <answer-set> Answer Set
- <array> Array (Simple Tabulation)
- <boxed-text> Boxed Text
- <chem-struct-wrap> Chemical Structure Wrapper
- <code> Code
- <explanation> Explanation
- <fig> Figure
- <fig-group> Figure Group
- <graphic> Graphic
- <media> Media Object
- <name-address-wrap> Name/Address Block Wrapper
- <preformat> Preformatted Text
- <question> Question
- <question-wrap> Question Wrapper
- <question-wrap-group> Question Wrapper Group
- <supplementary-material> Supplementary Material
- <table-wrap> Table Wrapper
- <table-wrap-group> Table Wrapper Group
- <disp-formula> Formula, Display
- <disp-formula-group> Formula, Display Group
- Lists
- Math Elements
- <p> Paragraph
- <related-article> Related Article Information
- <related-object> Related Object Information
- <ack> Acknowledgments
- <disp-quote> Quote, Displayed
- <speech> Speech
- <statement> Statement, Formal
- <verse-group> Verse Form for Poetry
- <x> X - Generated Text and Punctuation
- <sec> Section, zero or more
- Any combination of:
Content Model
<!ELEMENT sec %sec-model; >
Expanded Content Model
((object-id)*, sec-meta?, label?, title?, subtitle*, alt-title*, (address | alternatives | answer | answer-set | array | boxed-text | chem-struct-wrap | code | explanation | fig | fig-group | graphic | media | name-address-wrap | preformat | question | question-wrap | question-wrap-group | supplementary-material | table-wrap | table-wrap-group | disp-formula | disp-formula-group | def-list | list | tex-math | mml:math | p | related-article | related-object | ack | disp-quote | speech | statement | verse-group | x)*, (sec)*, (notes | fn-group | glossary | ref-list | sig-block)*)
Tagged Sample
Nested sections in the <book-body>
<book dtd-version="2.1">
...
<front-matter>...</front-matter>
<book-body>
<book-part id="bid.1" book-part-type="part">
<book-part-meta>...</book-part-meta>
<body>
<book-part id="bid.2" book-part-type="chapter">
<book-part-meta>
<title-group>
<label>1</label>
<title>GenBank: The Nucleotide Sequence Database</title>
</title-group>
...
<abstract>
<title>Summary</title>
<p>The GenBank sequence database is an annotated collection ...</p>
...
</abstract>
</book-part-meta>
<body>
<sec id="bid.3">
<title>History</title>
<p>Initially, GenBank was built and maintained at Los Alamos National
Laboratory ...</p>
</sec>
...
</body>
...
</book-part>
...
</body>
</book-part>
...
</book-body>
...
</book>