我写了一本笔记/书(实际上是我的论文),其中包含部分内容,但遇到了以下问题:
为了将笔记分成几部分,我使用了\part
命令,例如\part{This is part I}
,这会产生一个单独的页面,其中文本居中part I
,然后在下面写内容(仍然居中)This is part I
(我输入了“这是第一部分”以外的内容,但这并不重要),这就是页面上的全部内容。到目前为止,这很好,但是在对页面进行编号时,它会将页码写在中央底部,而不是右上角,在那里它会写所有其他页码,这与“分页页码”不同。但我的大学想要全部页码以相同的方式编号,并且他们希望所有数字都出现在页面的右上角。
您能否建议我如何使所有页码都出现在页面的右上角,特别是那些“分页”的页码?
答案1
因为我不知道你的班级,所以我给你一个book
带有包的班级的 MWE fancyhdr
。fancyhdr
你可以控制文档的页眉和页脚。使用texdoc fancyhdr
以获取更多信息或在此站点搜索标签fancyhdr
。
我不知道这是否适用于课堂ruthesis
。请自行尝试。
梅威瑟:
\documentclass{book}
\usepackage{fancyhdr}
\fancypagestyle{plain}%fancy plain we redefine style plain
\fancyhf{} % delete all fields
\cfoot{} % no pagenumer in foot
\fancyhead[RO,EL]{\thepage} % page numer in header, right+left side
\fancyhead[ER]{\chaptermark} % chaptertitle left
\fancyhead[OL]{\sectionmark} % sectiontitle right
\renewcommand{\headrulewidth}{0pt} % no rule
\renewcommand{\footrulewidth}{0pt} % no rule
\begin{document}
\fancypagestyle{plain}% define style footer/header
\part{One}
\chapter{Chapter One}
Text Text Text.
\section{Section One}
Text Text Text.
\clearpage
Text Text Text.
\part{two}
\chapter{Chapter two}
Text Text Text
\end{document}