I have another issue we are experiencing with Flare 12. We set up our different sections as topics, for example:
1. Overview
1.1 Machine Specs
1.2 Workspace
1.3 Definitions
2. Safety
2.1 Safety Gear Required
2.2 Safety Rules
3. Pre-operational Setup
3.1 Blah
3.2 Blah Blah
4. Operation
5. Shutdown
And so on...
Section 1 (including 1.1, 1.2, etc...) is one topic and the others follow that logic. When one of the other writers we work with set up the style sheets, the idea was that the h1 heading of each topic would display the correct section number. Instead, every topic is stuck on 1.
Here is the code used to try and get us what we need:
Code: Select all
h1
{
font-weight: bold;
margin-left: 0pt;
font-size: 14pt;
margin-top: 14pt;
mc-heading-level: 1;
mc-auto-number-class: Heading1;
mc-auto-number-offset: .25in;
/* mc-auto-number-format: 'H:{chapnum} '; */
mc-auto-number-position: inside-head;
mc-auto-number-format: 'H:{n+} ';
}
h2
{
font-weight: bold;
font-size: 12pt;
color: #000000;
margin-top: 12pt;
mc-heading-level: 2;
mc-auto-number-offset: .5in;
margin-left: 20pt;
mc-auto-number-class: Heading2;
mc-auto-number-format: 'H:{n}.{n+} ';
/* mc-auto-number-format: 'H:{chapnum}.{n+} '; */
mc-auto-number-position: inside-head;
}
h3
{
font-weight: bold;
font-size: 12pt;
color: #000000;
margin-top: 12pt;
mc-heading-level: 3;
mc-auto-number-offset: .5in;
margin-left: 20pt;
mc-auto-number-class: Heading3;
mc-auto-number-format: 'H:{n}.{n}.{n+} ';
/* mc-auto-number-format: 'H:{chapnum}.{n}.{n+} '; */
mc-auto-number-position: inside-head;
}
h4
{
font-weight: bold;
font-size: 12pt;
color: #000000;
font-style: italic;
margin-top: 12pt;
mc-heading-level: 4;
mc-auto-number-offset: .5in;
margin-left: 20pt;
mc-auto-number-class: Heading4;
mc-auto-number-format: 'H:{n}.{n}.{n}.{n+} ';
/* mc-auto-number-format: 'H:{chapnum}.{n}.{n}.{n+} '; */
mc-auto-number-position: inside-head;
}I've been through the forums, looking at Autonumbering issues and even when I found some that resembled my own, the topic was 6-8 years old and the solution didn't apply any longer to Flare 12. I tried working with chapter numbers, global numbers, section, etc. and I haven't found a solution that works yet. I appreciate your time reading this and any guidance you may have.