synopsis
synopsis — A general-purpose element for representing the syntax of commands or functions.
Synopsis
synopsis ::= × ⏵
- Sequence of:
info
? (db.titleforbidden.info)- One of:
- Zero or more of:
- text
lineannotation
- Bibliography inlines ⏵
- Computer-output inlines ⏵
- Error inlines ⏵
- Graphic inlines ⏵
- GUI inlines ⏵
- Indexing inlines ⏵
- Keyboard inlines ⏵
- Linking inlines ⏵
- Markup inlines ⏵
- Math inlines ⏵
- Object-oriented programming inlines ⏵
- Operating system inlines ⏵
- Product inlines ⏵
- Programming inlines ⏵
- Publishing inlines ⏵
- Technical inlines ⏵
- Ubiquitous inlines ⏵
- User-input inlines ⏵
textobject
- Zero or more of:
Attributes
Common attributes and common linking attributes.
Additional attributes:
- All of:
- continuation (enumeration)
- “continues”
- “restarts”
- linenumbering (enumeration)
- “numbered”
- “unnumbered”
- startinglinenumber (integer)
- xml:space (enumeration)
- “preserve”
- language
- continuation (enumeration)
- label
Additional Constraints
- If this element is the root element, it must have a version attribute.
Description
A synopsis
is a verbatim environment for
displaying command, function, and other syntax summaries.
Unlike cmdsynopsis
and
funcsynopsis
which have a complex interior structure,
synopsis
is simply a verbatim environment.
Processing expectations
This element is displayed “verbatim”; whitespace and line breaks
within this element are significant. A synopsis
element is usually displayed in a fixed-width font.
Attributes
Common attributes and common linking attributes.
- any attribute
Any attribute in any other explicit namespace
- continuation
Determines whether line numbering continues from the previous element or restarts
Enumerated values: “continues” Line numbering continues from the immediately preceding element with the same name.
“restarts” Line numbering restarts (begins at 1, usually).
- label
Specifies an identifying string for presentation purposes
- language
Identifies the language (i.e. programming language) of the verbatim content
- linenumbering
Determines whether lines are numbered
Enumerated values: “numbered” Lines are numbered.
“unnumbered” Lines are not numbered.
- startinglinenumber
Specifies the initial line number
- xml:space
Can be used to indicate explicitly that whitespace in the verbatim environment is preserved. Whitespace must always be preserved in verbatim environments whether this attribute is specified or not
Enumerated values: “preserve” Whitespace must be preserved.
Parents
77 elements contain synopsis
. × ⏵
Children
119 elements occur in synopsis
. × ⏵
See Also
Related elements: cmdsynopsis
, computeroutput
, funcsynopsis
, lineannotation
, literallayout
, programlisting
, screen
, screenshot
, userinput
.
Examples
1 |<article xmlns='http://docbook.org/ns/docbook'>
|<title>Example synopsis</title>
||
<synopsis>chgrp [-R [-H | -L | -P]] [-f] group file...</synopsis>
5 ||
</article>
|chgrp [-R [-H | -L | -P]] [-f] group file...
1 |<article xmlns='http://docbook.org/ns/docbook'>
|<title>Example synopsis</title>
||
<synopsis>int max(int int1, int int2);</synopsis>
5 ||
</article>
|int max(int int1, int int2);