对于奇偶页在不同的位置显示页码
使用了fancyhdr来实现:(似乎article不适用)
\documentclass{book}
\usepackage{fancyhdr}
\begin{document}
%页眉(脚)三部分
\lhead{};\chead{};\rhead{}; %left,center,right
\lfoot{};\cfoot{};\rfoot{};
%整个页眉 (脚)
\headfancy[LO,RE]{\thepage} %在页眉处--奇数页的右上角,偶数页的左上角显示页码
%%% O:奇数页 E:偶数页 L:左边 R:右边 C:中间
\footfancy[]{} % if {} is null,claer all the field
%页眉(脚)处横线
\renewcommand{\headrulewidth}{0pt} % 0pt means there is no line
\renewcommand{\footrulewidth}{.4pt}
\end{document}