simplesect
simplesect — A section of a document with no subdivisions.
Synopsis
simplesect ::=
- Sequence of:
- One of:
- Zero or more of:
annotation
bridgehead
formalgroup
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
Attributes
Common attributes and common linking attributes.
Additional attributes:
- label
- status
Additional Constraints
- If this element is the root element, it must have a version attribute.
Description
A simplesect
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 alternatives to the numbered sections and have unbounded depth.simplesect
s, which are terminal. Thesimplesect
s can occur as theleaf
sections in either recursive sections or any of the numbered sections, or directly in components.
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.
The important semantic distinction of simplesect
elements is that they never appear in the table of contents.
Processing expectations
Formatted as a displayed block. A simplesect
element
never appears in the table of contents.
Attributes
Common attributes and common linking attributes.
- any attribute
Any attribute in any other explicit namespace
- label
Specifies an identifying string for presentation purposes
- status
Identifies the editorial or publication status of the element on which it occurs
Parents
These elements contain simplesect
: appendix
, article
, chapter
, colophon
, partintro
, preface
, sect1
, sect2
, sect3
, sect4
, sect5
, section
, topic
.
Children
The following elements occur in simplesect
: address
, anchor
, annotation
, bibliolist
, blockquote
, bridgehead
, calloutlist
, caution
, classsynopsis
, cmdsynopsis
, constraintdef
, constructorsynopsis
, danger
, destructorsynopsis
, enumsynopsis
, epigraph
, equation
, example
, fieldsynopsis
, figure
, formalgroup
, formalpara
, funcsynopsis
, glosslist
, important
, indexterm
(db.indexterm.endofrange), indexterm
(db.indexterm.singular), indexterm
(db.indexterm.startofrange), info
(db.titleforbidden.info), info
(db.titlereq.info), informalequation
, informalexample
, informalfigure
, informaltable
(db.cals.informaltable), informaltable
(db.html.informaltable), itemizedlist
, literallayout
, macrosynopsis
, mediaobject
, methodsynopsis
, msgset
, note
, orderedlist
, packagesynopsis
, para
, procedure
, productionset
, programlisting
, programlistingco
, qandaset
, remark
, revhistory
, screen
, screenco
, screenshot
, segmentedlist
, sidebar
, simpara
, simplelist
, subtitle
, synopsis
, table
(db.cals.table), table
(db.html.table), task
, tip
, title
, titleabbrev
, typedefsynopsis
, unionsynopsis
, variablelist
, warning
.
See Also
Related elements: bridgehead
, sect1
, sect2
, sect3
, sect4
, sect5
, section
.
Examples
1 |<article xmlns='http://docbook.org/ns/docbook'>
|<title>Example simplesect</title>
||
<section><title>Additional Coding</title>
5 ||
<para>Support for the additional features requested will be provided.
|</para>
||
<simplesect><title>Estimated Time</title>
10 ||
<para>2 to 3 weeks.
|</para>
||
</simplesect>
15 |</section>
||
</article>