Index group and index list examples
Examples of XML structure of indexGroup and indexList elements.
Example simple index entitled Index
with A-Z grouping
Notice:
- One indexGroup (untitled)
- One indexList element with title
Index
<indexGroup id="med-9780199550791-indexGroup-26">
<indexList id="med-9780199550791-indexList-26001" indexListType="regular"><titleGroup>
<title>
<p>Index</p>
</title></titleGroup><alphabet>A</alphabet><indexItem1 id="med-9780199550791-indexItem1-1">
<iHeadword>ABR</iHeadword>
</indexItem1><!-- ... -->
</indexList>
</indexGroup>
Example: Two Indexes; index of authors
and index of subjects
with an
overarching heading Indexes
Notice:
- One indexGroup with title
Indexes
- Two indexList elements
<indexGroup id="med-9780199550791-indexGroup-26">
<titleGroup><title>
<p>Indexes</p></title>
</titleGroup>
<indexList id="med-9780199550791-indexList-26001" indexListType="authorIndex"><titleGroup>
<title>
<p>Index of authors</p>
</title></titleGroup><indexItem1>
<!-- ... --></indexItem1><!-- ... -->
</indexList>
<indexList id="med-9780199550791-indexList-26002" indexListType="subjectIndex"><titleGroup>
<title>
<p>Index of subjects</p>
</title></titleGroup><indexItem1>
<!-- ... --></indexItem1><!-- ... -->
</indexList>
</indexGroup>
Example: Two Indexes; index of authors
and index of subjects
with no
overarching heading
Notice:
- One indexGroup (untitled)
- Two indexList elements
<indexGroup id="med-9780199550791-indexGroup-26">
<indexList id="med-9780199550791-indexList-26001" indexListType="authorIndex"><titleGroup>
<title>
<p>Index of authors</p>
</title></titleGroup><indexItem1>
<!-- ... --></indexItem1><!-- ... -->
</indexList>
<indexList id="med-9780199550791-indexList-26002" indexListType="subjectIndex"><titleGroup>
<title>
<p>Index of subjects</p>
</title></titleGroup><indexItem1>
<!-- ... --></indexItem1><!-- ... -->
</indexList>
</indexGroup>