iuf / rulebook

IUF Rulebook
10 stars 15 forks source link

Section numbering shouldn't have the dot at the end #85

Closed gossi closed 11 years ago

gossi commented 11 years ago

Sections at the moment look like:

x.y. heading

e.g.

5.3. Safety Gear

However, the dot after the last number is too much, it should be:

x.y heading

e.g.

5.3 Safety Gear
scotthue commented 11 years ago

Is the dot after the part and chapter ok?

So

3.

Or

5a.

On Tuesday, June 25, 2013, Thomas Gossmann wrote:

Sections at the moment look like:

x.y. heading

e.g.

5.3. Safety Gear

However, the dot after the last number is too much, it should be:

x.y heading

e.g.

5.3 Safety Gear

— Reply to this email directly or view it on GitHubhttps://github.com/iuf/rulebook/issues/85 .

-- Scott Wilton

gossi commented 11 years ago

Nope, there should nowhere be a dot at the end. The dots separate the individual digits/parts and there is no more part at the end.

fdietze commented 11 years ago

I tracked it down to this line:

\renewcommand{\thechapter}{\arabic{part}\alph{chapter}}

the alph command produces the dots. I have no idea why.

gossi commented 11 years ago

Is there a way to substring this?