section
section — A recursive section.
Synopsis
- Sequence of:
- One of:
- One of:
- Sequence of:
- One or more of:
annotation
bridgehead
remark
revhistory
- Indexing inlines
- Admonition elements
- Formal elements
- Graphic elements
- Informal elements
informalequation
informalexample
informalfigure
informaltable
(db.cals.informaltable)informaltable
(db.html.informaltable)
- List elements
- Paragraph elements
- Publishing elements
- Synopsis elements
- Technical elements
- Verbatim elements
- Optionally one of:
- Sequence of:
- One or more of:
- Zero or more of:
- One or more of:
- One or more of:
- Sequence of:
- One or more of:
- Sequence of:
- One or more of:
- Zero or more of:
- One or more of:
- One or more of:
- Sequence of:
- Zero or more of:
- One of:
Additional Constraints
- The root element must have a version attribute.
Description
A section
is one of the top-level sectioning elements
in a component. There are
three
types of sectioning elements in DocBook:
Explicitly numbered sections,
sect1
…sect5
, which must be properly nested and can only be five levels deep.Recursive
section
s, which are an alternative to the numbered sections and have unbounded depth.simplesect
s, which are terminal. Thesimplesect
s can occur as the “leaf” sections in recursive sections or any of the numbered sections, or directly in components.
The section
element may be more convenient than
numbered sections in some authoring environments because instances can
be moved around in the document hierarchy without renaming.
None of the sectioning elements is allowed to “float” in a component. You can place paragraphs and other block elements before a section, but you cannot place anything after it.
Processing expectations
Formatted as a displayed block. Sometimes sections are numbered.
Use of deeply nested section
s may cause problems in
some processing systems.
Attributes
Common attributes and common linking attributes.
- label
Specifies an identifying string for presentation purposes
- status
Identifies the editorial or publication status of the element on which it occurs
See Also
bridgehead
, sect1
, sect2
, sect3
, sect4
, sect5
, simplesect
Examples
1 <article xmlns='http://docbook.org/ns/docbook'> 2 <title>Example section</title> 4 <para>This <tag>article</tag> uses recursive sections.</para> 6 <section> <title>Like a Sect1</title> 8 <subtitle>Or How I Learned to Let Go of Enumeration and Love to Recurse</subtitle> 10 <info> <abstract> 12 <para>A trivial example of recursive sections.</para> </abstract> 14 </info> <para>This section is like a Sect1.</para> 16 <section><title>Like a Sect2</title> <para>This section is like a Sect2.</para> 18 <section><title>Like a Sect3</title> <para>This section is like a Sect3.</para> 20 <section><title>Like a Sect4</title> <para>This section is like a Sect4.</para> 22 <section><title>Like a Sect5</title> <para>This section is like a Sect5.</para> 24 <section><title>Would be like a Sect6</title> <para>This section would be like a Sect6, 26 if there were one.</para> <section><title>Would be like a Sect7</title> 28 <para>This section would be like a Sect7, if there was one.</para> 30 </section> </section> 32 </section> </section> 34 </section> </section> 36 </section> 38 </article>