Search found 5 matches

by fetchinson
Fri Jul 13, 2007 3:46 pm
Forum: General
Topic: prefix section/subsection numbering with a letter
Replies: 6
Views: 23276

Re: prefix section/subsection numbering with a letter

Thanks a lot, this indeed works nicely!
by fetchinson
Fri Jul 13, 2007 1:59 pm
Forum: General
Topic: prefix section/subsection numbering with a letter
Replies: 6
Views: 23276

Re: prefix section/subsection numbering with a letter

This is also not very difficult it turns out:

\usepackage{lastpage}
\cfoot[\thepage]{Part B \hfill Page \thepage \hspace{0.05cm} of \pageref{LastPage}}

Isn't that great? :)
by fetchinson
Fri Jul 13, 2007 1:56 pm
Forum: General
Topic: prefix section/subsection numbering with a letter
Replies: 6
Views: 23276

Re: prefix section/subsection numbering with a letter

Actually, I found a solution in case someone else is also interested:

\pagestyle{fancy}
\cfoot[\thepage]{Part B \hfill Page \thepage \hspace{0.05cm} of 20}

The only thing missing is that the total number of pages is hardwired to 20, I guess it's possible to have that filled in automatically. If ...
by fetchinson
Fri Jul 13, 2007 1:20 pm
Forum: General
Topic: prefix section/subsection numbering with a letter
Replies: 6
Views: 23276

Re: prefix section/subsection numbering with a letter

So easy? Thanks a lot!

It works great, but this solution gave me another problem, please bear with me. At the bottom of every page I need to have the text "Part B 5 of 20" for instance if the page number is 5 and the total number of pages is 20. I achieved this by

\renewcommand{\thepage}{Part B ...
by fetchinson
Fri Jul 13, 2007 12:14 pm
Forum: General
Topic: prefix section/subsection numbering with a letter
Replies: 6
Views: 23276

prefix section/subsection numbering with a letter

Hi all,

I am required to have a special numbering of sections and subsections in my document. There needs to be a letter B in front of every section/subsection number, but otherwise the numbering scheme should be the usual one. So it should go like this: B1, B1.1, B1.2, B1.3, B2, B2.1, B2.2, etc ...