QandASet ::= ((Title,TitleAbbrev?)?, (CalloutList|GlossList|ItemizedList|OrderedList|SegmentedList| SimpleList|VariableList|LiteralLayout|ProgramListing| ProgramListingCO|Screen|ScreenCO|ScreenShot|Synopsis| CmdSynopsis|FuncSynopsis|FormalPara|Para|SimPara|Address| BlockQuote|Graphic|GraphicCO|MediaObject|MediaObjectCO| InformalEquation|InformalExample|InformalFigure|InformalTable| Equation|Example|Figure|Table|Procedure|Anchor|BridgeHead| Comment|Highlights|IndexTerm)*, (QandADiv+|QandAEntry+))
Name | Type | Default |
DefaultLabel | Enumeration: none | None |
Both the start- and end-tags are required for this element.
A QandASet is a list consisting of Questions and Answers. QandASets can be divided into sections.
Every entry in a QandASet must contain a Question, but Answers are optional (some questions have no answers), and may be repeated (some questions have more than one answer).
Common uses for QandASets include reader questionnaires and lists of "Frequently Asked Questions" (FAQs). For the purpose of an FAQ, DocBook V3.1 added the FAQ class to Article.
Formatted as a displayed block. The DefaultLabel attribute has a significant influence on the presentation of Questions and Answers.
These elements contain QandASet: Appendix, Article, BiblioDiv, Bibliography, BlockQuote, Callout, Chapter, Glossary, GlossDiv, Index, ListItem, MsgExplan, MsgText, PartIntro, Preface, Procedure, RefSect1, RefSect2, RefSect3, RefSynopsisDiv, Sect1, Sect2, Sect3, Sect4, Sect5, Section, SetIndex, SimpleSect, Step.
The following elements occur in QandASet: Address, Anchor, BlockQuote, BridgeHead, CalloutList, CmdSynopsis, Comment, Equation, Example, Figure, FormalPara, FuncSynopsis, GlossList, Graphic, GraphicCO, Highlights, IndexTerm, InformalEquation, InformalExample, InformalFigure, InformalTable, ItemizedList, LiteralLayout, MediaObject, MediaObjectCO, OrderedList, Para, Procedure, ProgramListing, ProgramListingCO, QandADiv, QandAEntry, Screen, ScreenCO, ScreenShot, SegmentedList, SimPara, SimpleList, Synopsis, Table, Title, TitleAbbrev, VariableList.
In some contexts, the following elements are allowed anywhere: BeginPage, IndexTerm.
In some contexts, the following elements are excluded: Equation, Example, Figure, IndexTerm, InformalTable, Table.
DefaultLabelIdentifies the default label that should be used for Questions and Answers:
Questions are labeled "Q:" and Answers are labeled "A:". Other similar labels may be substituted, for example, the words might be spelled out, "Question:" and "Answer:", and the actual characters or words used are dependent on the language.
The entries are enumerated.
The content of the Label attribute on each Question and Answer is used.
If no value is specified, the implied presentation may be any one of these, as defined by the stylesheet.
<!DOCTYPE qandaset PUBLIC "-//OASIS//DTD DocBook V3.1//EN"> <qandaset defaultlabel='qanda'> <qandaentry> <question> <para> To be, or not to be? </para> </question> <answer> <para> That is the question. </para> </answer> </qandaentry> </qandaset>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V3.1//EN"> <article class=faq> <title>Frequently Asked Questions About Fonts</title> <para>...</para> <qandaset> <qandadiv><title>General Information</title> <para>...</para> <qandadiv><title>Font Houses</title> <qandaentry><question><para>Adobe Systems, Inc.</para></question> <answer><para>...</para></answer> <qandaentry><question><para>Agfa, Inc.</para></question> <answer><para>...</para></answer> </qandadiv> </qandadiv> </qandaset> </article>
Copyright © 1999 O'Reilly & Associates, Inc. All rights reserved.