views:

180

answers:

2

Hi!

I have a report, where i also have appendixes. What i want is to use a different style on the page numbering when the appendixes start.

i use arabic until i reach the appendixes. Then i would want to do something like this:

I want the custom page numbering to be: Chapter: A Section: {Chapter}{1} (A-1)

  \newpage
  \pagenumbering{custompagenumbering}

Is this possible to do?

+4  A: 
Some paragraph. Some paragraph. Some paragraph. Some paragraph. Some paragraph.

\newpage
\setcounter{page}{1}
\renewcommand{\thepage}{A-\arabic{page}}

Some paragraph. Some paragraph. Some paragraph. Some paragraph. Some paragraph.

Would this be anywhere near what you want to do? This is how you can manipulate the page counter, and the \thepage command that determines what will be printed as page number. \roman{page} would give roman numbers, \alph{page} a, b, c ...

The other sensible solution is to use the fancyhdr package, as suggested before.

David
+1 Good answer. An example with `fancyhdr` would make this a really great answer.
Geoff
+2  A: 
Brian M. Hunt