<table>

Aparece em
<table-wrap>
Ocorre
Uma vez

Tabela codificada conforme o padrão NISO JATS table model, com a adição das regras:

  • O primeiro nível da estrutura não pode conter o elemento <tr>, i.e. //table/tr.
  • Elemento <th> apenas como descendente de <thead>.
  • Elemento <td> apenas como descendente de <tbody>.

Toda a formatação para exibição deve ser realizada conforme descrito no guia Table Formatting.

Legenda Traduzida

Tabelas com legendas traduzidas, com mais de 1 label e caption, devem ser identificadas pelo elemento <table-wrap-group> o qual deve envolver os elementos <table-wrap> de cada idioma veja:

Exemplo de tabela codificada:

...
<table-wrap-group id="t01">
    <table-wrap xml:lang="pt">
        <label>Tabela 1</label>
        <caption>
            <title>Caracterização química em óxidos do rejeito.</title>
        </caption>
    </table-wrap>
    <table-wrap xml:lang="en">
        <label>Table 1</label>
        <caption>
            <title>Chemical characterization of the oxides of the tailing</title>
        </caption>
        <table frame="hsides" rules="groups">
            <thead>
                <tr>
                    <th>Variável</th>
                    <th>Resultados (N=880)</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td align="center">Gênero</td>
                    <td align="center"/>
                </tr>
                <tr>
                    <td align="center">Masculino</td>
                    <td align="center">411 (46,7)</td>
                </tr>
                <tr>
                    <td align="center">Feminino</td>
                    <td align="center">469 (53,3)</td>
                </tr>
            </tbody>
        </table>
    </table-wrap>
</table-wrap-group>
...

Exemplo de Tabela como imagem:

...
<table-wrap-group id="t03">
    <table-wrap xml:lang="pt">
        <label>Tabela 3</label>
        <caption>
            <title>Análise multivariada dos fatores de risco associados à readmissão - modelo 2</title>
        </caption>
    </table-wrap>
    <table-wrap id="en">
        <label>Table 3</label>
        <caption>
            <title>Multivariate analysis of risk factors associated with readmission - Model 2</title>
        </caption>
        <graphic xlink:href="1234-5678-rctb-45-05-0110-gt031.tif"/>
    </table-wrap>
</table-wrap-group>
...