I want the footer of all pages to be "Page N°X" on the right. I used this:
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyhead[R]{\leftmark}
\fancyfoot[R]{\footnotesize Página N$^\circ$ \thepage\ }
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
It works on every page but the chapter beginning ones.
N$^\circ$you could use\textnumero, which is part of thetextcomppackage. It looks nicer and it avoids "abusing" the math environment. – doncherry May 1 '11 at 9:05