◇◆
<question-preamble> Question Preamble
An element containing setup/preamble information that is shared
by several questions. For example, a <question-preamble> might contain a diagram of a triangle (with several labeled parts) that is shared
by questions such as “What is angle 'a'?”, or “Given only the information in the diagram,
can you calculate the length of the line from 'b' to 'd'?”.
Usage/Remarks
The preamble information is part of
a <question-wrap-group> that contains the
preamble/setup (<question-preamble>) and
several questions (tagged as <question-wrap>s).
Attributes
Multi-lang Attributes
Models and Context
May be contained in
Description
The following, in order:
- <object-id> Object Identifier, zero or more
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- <title> Title, zero or one
- <subtitle> Document Subtitle, zero or more
- <alt-title> Alternate Title, zero or more
- Any combination of:
- Paragraph-level Display Elements
- <address> Address/Contact Information
- <answer> Answer to a Question
- <answer-set> Answer Set
- <array> Array (Simple Tabulation)
- <block-alternatives> Block-level Alternatives
- <boxed-text> Boxed Text
- <chem-struct-wrap> Chemical Structure Wrapper
- <code> Code
- <explanation> Explanation
- <fig> Figure
- <fig-group> Figure Group
- <graphic> Graphic
- <media> Media Object
- <preformat> Preformatted Text
- <question> Question
- <question-wrap> Question Wrapper
- <question-wrap-group> Question Wrapper Group
- <supplementary-material> Supplementary Material Metadata
- <table-wrap> Table Wrapper
- <table-wrap-group> Table Wrapper Group
- <alternatives> Alternatives For Processing
- <disp-formula> Formula, Display
- <disp-formula-group> Formula, Display Group
- Lists
- Math Elements
- <p> Paragraph
- <related-article> Related Article Information
- <related-object> Related Object Information
- <disp-quote> Quote, Displayed
- <speech> Speech
- <statement> Statement, Formal
- <verse-group> Verse Form for Poetry
- Paragraph-level Display Elements
- <sec> Section, zero or more
Content Model
<!ELEMENT question-preamble %question-preamble-model; >
Expanded Content Model
((object-id)*, label?, title?, subtitle*, alt-title*, (address | alternatives | answer | answer-set | array | block-alternatives | boxed-text | chem-struct-wrap | code | explanation | fig | fig-group | graphic | media | preformat | question | question-wrap | question-wrap-group | supplementary-material | table-wrap | table-wrap-group | disp-formula | disp-formula-group | def-list | list | tex-math | mml:math | p | related-article | related-object | disp-quote | speech | statement | verse-group)*, (sec)*)
Tagged Sample
Setup for multiple questions
...
<question-wrap-group>
<question-preamble>
<p>Directions: Read the selection. Use the selection to answer
questions 1 — 4.</p>
<disp-quote>
<p>John Herschel Glenn, Jr. (born July 18, 1921) is a former
U.S. Marine Corps aviator, engineer, astronaut and United States
senator. He was ...</p>
...
</disp-quote>
</question-preamble>
<question-wrap>
<question id="q1" question-response-type="multiple-choice">
<label>1</label>
<p>In the selection, what does the word concussion mean?</p>
<option correct="no"><label>A</label>
<p>Judgement or decision reached by reasoning</p></option>
<option correct="yes"><label>B</label>
<p>Injury caused by a blow to the head</p></option>
<option correct="no"><label>C</label>
<p>Broken elbow</p></option>
</question>
</question-wrap>
<question-wrap>
<question id="q2" question-response-type="true-false">
<label>2</label>
<p>John Glenn was older than Georgy Beregovoy.</p>
</question>
<answer pointer-to-question="q2" id="ans2">
<p>false</p></answer>
</question-wrap>
...
</question-wrap-group>
...