I am documenting a requirements document using flare. It is vitally important that my numbering stays in sync between all outputs and stays related to the original customer requirements document (in word format).
I have successfully produced the pdf output. (UN-selected option "Use TOC depth for heading levels") and checked that all numbers stay in line with the original word document.
I then wanted to enable the same numbers in the WebHelp output; but, to my surprise they come out differently.
Looking at the first 2 topics; I expected them to look like the pdf:
Code: Select all
PDF Numbers:
<---- topic1.htm starts here
1. First chaper
1.1 first heading
1.1.1 sub heading
1.1.1.1 blah
1.1.1.2 blah
1.1.2 sub heading2
1.1.2.1 blah
<----- topic2.htm starts here
1.1.3 next sub heading
1.1.3.1 blah
it comes out like this:
Code: Select all
...(as above) then:
<----- topic2.htm starts here
1.1.4 next sub heading
1.1.4.1 blah
My numbering style is set up to be the same for print and non-print output thus:
Code: Select all
h1
{
mc-auto-number-format: 'CH: Chapter {chapnum}{ =0}: ';
mc-heading-level: 1;
}
h2
{
mc-auto-number-format: 'CH:{chapnum}.{n+}{ =0} ';
mc-heading-level: 2;
}
h3
{
mc-auto-number-format: 'CH:{chapnum}.{n}.{n+}{ =0} ';
mc-heading-level: 3;
}
h4
{
mc-auto-number-format: 'CH:{chapnum}.{n}.{n}.{n+}{ =0} ';
mc-heading-level: 4;
}
cheers
peteB