<app>

Mandatory attributes:

Appears in

Frenquency

<app-group>

Zero or more times

Used to indicate an appendix to the document. The element <label> or <title> could be present to describe the title of the appendix. The element <app-group> must always be used to group the <app> element even if there is only one occurrence of it.

Note

According to NISO JATS Journal Archiving DTD specifications, one of <label> or <title> should be available in <app>

Examples:

Example of an appendix with text

...
<app-group>
      <app id="app01">
          <label>Appendix</label>
          <p>Vivamus fermentum elit et pellentesque iaculis. Curabitur egestas rhoncus purus quis iaculis. Sed laoreet id leo eu tristique. Etiam hendrerit nibh in tincidunt mattis. Sed et volutpat nulla, eget semper tellus. Nullam imperdiet fringilla diam, nec mollis elit sagittis a. Nam euismod sagittis posuere.</p>
      </app>
</app-group>
...

Example of an appendix with an image (photograph, figure, table, painting, equation, etc)

...
<app-group>
    <app id="app01">
          <label>Appendix 1</label>
          <title>Picture of a square</title>
          <graphic xlink:href="square.tif"/>
    </app>
</app-group>
...

Example of an appendix with a table

...
<app-group>
  <app id="app01">
  <label>Appendix</label>
        <table-wrap>
          <label>Table 1</label>
          <caption>
              <title>Table Title</title>
          </caption>
          <table frame="hsides" rules="all">
              <colgroup width="XX%">
                  <col/>
                  <col/>
                  <col/>
              </colgroup>
              <thead>
                  <tr>
                       <th style="background-color:#e5e5e5">xxxxx</th>
                       <th style="background-color:#e5e5e5">xxxxx</th>
                       <th style="background-color:#e5e5e5">xxxxxx</th>
                  </tr>
              </thead>
              <tbody>
                  <tr>
                       <td align="center">xxxxx</td>
                       <td align="center">xxxx</td>
                       <td align="center">xxxx</td>
                  </tr>
              </tbody>
          </table>
        </table-wrap>
  </app>
</app-group>
...

Example of an appendix with mixed content (figure and table)

...
<app-group>
    <app id="app01">
        <label>Appendix 1</label>
        <title>Picture of a square</title>
        <graphic xlink:href="square.tif"/>
    </app>
    <app id="app02">
        <label>Appendix 2</label>
        <table-wrap>
            <label>Supplementary Table S1</label>
            <caption>
                <title>Table Title</title>
            </caption>
            <table frame="hsides" rules="all">
                <colgroup width="XX%">
                    <col/>
                    <col/>
                    <col/>
                </colgroup>
                <thead>
                    <tr>
                        <th style="background-color:#e5e5e5">xxxxx</th>
                        <th style="background-color:#e5e5e5">xxxxx</th>
                        <th style="background-color:#e5e5e5">xxxxxx</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td align="center">xxxxx</td>
                        <td align="center">xxxx</td>
                        <td align="center">xxxx</td>
                    </tr>
                </tbody>
            </table>
        </table-wrap>
    </app>
</app-group>
...

Example of an appendix with a video

...
<app-group>
      <app id="app01">
          <label>Appendix 1</label>
          <supplementary-material id="suppl01">
          <media xlink:href="video.avi" mimetype="video" mime-subtype="avi"/>
          </supplementary-material>
      </app>
</app-group>
...