Appendix numbering

This forum is for all Flare issues related to PDF, eBook, Microsoft Word, Adobe FrameMaker, XPS, and XHTML book targets.
Post Reply
Paul Griffiths
Sr. Propeller Head
Posts: 261
Joined: Wed Apr 18, 2007 2:25 am
Location: Nottingham, UK

Appendix numbering

Post by Paul Griffiths »

This should be really simple but I'm struggling. What I want is:

Appendix A
A.1
A.1.2
...

followed by

Appendix B
B.1
B.1.2

But what I get is Appendix A followed by Appendix A again, and the numbering doesn't reset.

Can anyone tell me why the following doesn't work?

Code: Select all

	html.appendix h1
	{
		mc-auto-number-format: 'X:Appendix {A+}:{ =0} ';
	}

	html.appendix h2
	{
		mc-auto-number-format: 'X:{A}.{Gn+} ';
	}

	html.appendix h3
	{
		mc-auto-number-format: 'X:{A}.{Gn}.{Gn+} ';
	}
Rene Severens
Sr. Propeller Head
Posts: 210
Joined: Mon Sep 19, 2011 2:06 am
Location: Netherlands - Zoetermeer
Contact:

Re: Appendix numbering

Post by Rene Severens »

hi,

The mc-auto-number-format must start with "G" for global so : 'GX:{A}.{n}.{n+} ';

GX: Appendix {A+}
GX: {A}.{n+}
GX: {A}.{n}.{n+}

Greetings,

Rene Severens
"The numbers are strange today; they somehow do not seem to add up."
Paul Griffiths
Sr. Propeller Head
Posts: 261
Joined: Wed Apr 18, 2007 2:25 am
Location: Nottingham, UK

Re: Appendix numbering

Post by Paul Griffiths »

It worked! Thank you, Rene.
erinhill
Propeller Head
Posts: 23
Joined: Wed Aug 05, 2020 1:35 pm

Re: Appendix numbering

Post by erinhill »

This fixed my issue, too! thank you!
Post Reply