EnglishDeutschFrançais

3.4 How can I number my pages?

You can number your pages using CSS counters and generated content to place the page numbers in the page margin boxes of every page. The code below shows how to place a simple page counter in the footer of every page:

@page {
    @bottom {
        content: counter(page) " / " counter(pages);
    }
}

For more information, please see the chapter Page Numbers of the PDFreactor Manual.

 

Copyright © 2000-2008 RealObjects GmbH