我正在完成我的论文,学校有一个相当奇怪的要求。我使用文档类“报告”,这样我就可以有章节。学校希望每章第一页的页码位于页面中央,其他页码位于右上角。有办法做到这一点吗?
谢谢。
答案1
您可以使用,例如,fancyhdr
或者scrlayer-scrpage
更改默认的页眉和页脚。下面是使用的示例scrlayer-scrpage
。用于带有章节标题的页面的纯色页面样式的默认值已经在页脚处带有居中数字。因此,我们只需要更改非纯色页面的页眉和页脚的默认值:
\documentclass{report}
\usepackage[automark]{scrlayer-scrpage}% automark activates running head
\clearmainofpairofpagestyles% remove the default elements of non-plain pages
\ohead{\pagemark}% page number at outer margin in the head of non-plain pages
\ihead{\headmark}% running head (repeated chapter title) at the inner margin in the head of non-plain pages
\usepackage{mwe}% for dummy text in minimal working examples
\begin{document}
\Blinddocument
\end{document}
结果是:
如果你必须更改头部和文本区域之间的边距或距离,则可以使用包geometry
。