qandaset

$Revision: 1.5 $

$Date: 2002/11/26 14:26:23 $

qandaset — A question-and-answer set

Synopsis

Content Model

qandaset ::=
(blockinfo?,
 (title,titleabbrev?)?,
 (calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist|
  simplelist|variablelist|caution|important|note|tip|warning|
  literallayout|programlisting|programlistingco|screen|screenco|
  screenshot|synopsis|cmdsynopsis|funcsynopsis|classsynopsis|
  fieldsynopsis|constructorsynopsis|destructorsynopsis|
  methodsynopsis|formalpara|para|simpara|address|blockquote|
  graphic|graphicco|mediaobject|mediaobjectco|informalequation|
  informalexample|informalfigure|informaltable|equation|example|
  figure|table|procedure|anchor|bridgehead|remark|highlights|
  indexterm)*,
 (qandadiv+|qandaentry+))

Attributes

Common attributes

Name

Type

Default

defaultlabel
Enumeration:
none
number
qanda
None

Description

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.

Processing expectations

Formatted as a displayed block. The DefaultLabel attribute has a significant influence on the presentation of Questions and Answers.

Attributes

defaultlabel

DefaultLabel identifies the default label that should be used for Questions and Answers:

qanda

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.

number

The entries are enumerated.

none

No distinguishing label precedes Questions or Answers.

If no value is specified, the implied presentation may be any one of these, as defined by the stylesheet. Note that each question and answer can explicitly define a label, regardless of the default label specified.

Examples

<!DOCTYPE qandaset PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<qandaset defaultlabel='qanda'>
<qandaentry>
<question>
<para>
To be, or not to be?
</para>
</question>
<answer>
<para>
That is the question.
</para>
</answer>
</qandaentry>
</qandaset>
Q:

To be, or not to be?

A:

That is the question.

<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<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>

<qandaentry><question><para>Agfa, Inc.</para></question>
<answer><para>...</para></answer>
</qandaentry>

</qandadiv>
</qandadiv>
</qandaset>
</article>