On Wed, 04 Dec 2002 16:30:25 -0500 Frederic Leymarie <[EMAIL PROTECTED]> wrote:
> Hi there > > I need to do the following (would someone > have an example of LaTeX commands for it ?): > > On pages with major (chapter) headings, > the arabic numerals should be centered at > the bottom of the page. On all other pages, > they should be placed flush with the margin > at the top right hand corner of the page, > 2cm below the top edge. > > --- > Frederic > use fancy headers, you can define them separate for fancy and plain style. \fancypagestyle{plain}{ \fancyfoot[C]{\thepage} } \pagestyle{fancy}{ \rhead{\thepage} } and some other stuff, this is just a hint to get started. Jeroen.