Issue meta: Table of Contents
Capture the table of contents of article ordering in a table-of-contents element.
issue-meta/table-of-contents
For an ordered issue TOC, use a table-of-contents element with each TOC heading captured as a child toc-sec element.
TOC sections may have up to 3 levels (2 nested) and will appear in the order declared. The TOC headings must match those in the article XML files. Each toc-sec must contain a title and toc-content child element.
Use title element for TOC headings and toc-content for the article identifier. Use pub-id-type="doi" with a xlink:href for each unique DOI on the TOC.
Each declared DOI must exist in order for the issue meta file to load successfully.
Single TOC heading:
<table-of-contents> <toc-sec> <title>Cover/Standing Material</title> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv094"/> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv102"/> </toc-sec> </table-of-contents>
2 level TOC heading:
<table-of-contents> <toc-sec> <title>Literature Review</title> <toc-sec> <title>Asthma</title> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv094"/> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv102"/> </toc-sec> </toc-sec> </table-of-contents>
3 level TOC heading:
<table-of-contents> <toc-sec> <title>Literature Review</title> <toc-sec> <title>Asthma</title> <toc-sec> <title>Respiratory</title> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv094"/> <toc-content pub-id-type="doi" xlink:href="10.1093/arclin/acv102"/> </toc-sec> </toc-sec> </toc-sec> </table-of-contents>