Re: [ujac-support] TOC Question
Brought to you by:
lauerc
|
From: Christian L. <la...@gm...> - 2004-08-18 22:54:55
|
Hi Brian, I've implemented the stuff a little different from what I've posted in my last message. Actually the TOC support for new items is added by extending the capabilites of the <outline> tag. Currently only <cell> tags and <paragraph> tags are perfectly supported, but other elements should work similar. The new attribute 'toc-number' tells the <outline> tag to generate a TOC entry. Here's an example: <table widths="20,40,40"> <cell><outline name="cellTest" toc-number="1.">Cell Test</outline>Cell Test</cell> <cell>regular cell</cell> <cell>regular cell 2</cell> </table> <paragraph><outline name="paraTest" toc-number="2.">Paragraph Test</outline>Paragraph Test</paragraph> Hope this works for you. Best regards, Christian |