OSEO - Titles added to chunk
The OSEO product sometimes needs titles added to chunks where there is not a title in the print version.
Add the attribute role="toc" to the title element to indicate that it is only to display in the table of contents. This is known commonly as a tocTitle.
Where the tocTitle is needed to be different from the chunk title, add the tocTitle in addition to the normal title inside the titleGroup.
Example
<titleGroup>
<title role="toc"><p>January</p>
</title>
</titleGroup>
miscMatter chunks with a class value other than 'other' will not require such heading as they inherit their TOC heading from the value of class.
This can also be used to add a meaningful title into the ToC pane of the OSEO site. Where instructed, add a tocTitle to force a different title in the ToC display.
Example
<titleGroup>
<title><p>Edward III</p>
</title>
<title role="toc"><p>Introduction</p>
</title>
</titleGroup>