Figures containing tables

Simple tables can be contained within figures instead of, or in addition to, images.

Figures will normally contain images or other forms of graphical illustration. However, they can also contain text-based objects such as simple tables (simpletable elements), definition lists (dl elements), code blocks (codeblock elements), message blocks (msgblock elements), and long quotations (lq elements).

As a simple table can itself contain images, it is also possible to use the simpletable structure to create figures comprising multiple images and text fragments, such as a collection of images along with supporting explanatory text.

Example of Code for Table Containing Images in a Figure Structure

<fig>
 <title>Screen captures showing different rendering views</title>
 <simpletable>
  <strow>
   <stentry>
    <image href="../images/qa_dhtml_before.png">
     <alt>Screen capture showing the standard display of a topic </alt>
    </image>
   </stentry>
  </strow>
  <strow>
   <stentry>
    <image href="../images/qa_dhtml_after.png">
     <alt>Screen capture showing the display of a topic in QA mode</alt>
    </image>
   </stentry>
  </strow>
 </simpletable>
</fig>