Abbildung figure

Abbildungen können "generisch" via figure oder - in den meisten Fällen spezifischer - über screenshot eingebunden werden.

Einbindung via figure

Abbildung A.1. Abbildung figure

Abbildung figure

Beispiel A.7. Abbildung ohne Untertitel

<figure>
  <title>Abbildungstitel</title>
    <mediaobject>
      <imageobject>
        <imagedata fileref="images/dateiname.png"/>
      </imageobject>
    </mediaobject>
</figure>


Einbindung via figure mit Untertitel (caption)

Abbildung A.2. Beispielabbildung mit Untertitel figure

Beispielabbildung mit Untertitel figure

Untertitel des Abbildung - caption


Beispiel A.8. Abbildung mit Untertitel (caption)

<figure>
  <title>Abbildungstitel</title>
  <mediaobject>
    <imageobject>
      <imagedata fileref="images/dateiname.png"/>
    </imageobject>
    <caption>
      <para>Untertitel des Abbildung - caption</para>
    </caption>
  </mediaobject>
</figure>


Einbindung via screenshot

Abbildung A.3. Screenshot-Titel

Screenshot-Titel

Beispiel A.9. Screenshot

<figure>
<title>Screenshot-Titel</title>
  <screenshot>
    <mediaobject>
      <imageobject>
        <imagedata fileref="images/dateiname.png"/>
      </imageobject>
    </mediaobject>
  </screenshot>
</figure>