我正在尝试将页码向右移动。以下是整个文档的代码:
\documentclass[14pt]{report}
\usepackage{graphicx}
\graphicspath{pics/}
\usepackage[a4paper,top=25mm,bottom=25mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot{}
\fancyfoot[R]{\thepage}
\title{
...
}
\author{
...
}
\date{}
\begin{document}
\maketitle
\chapter*{Abstract}
...
\tableofcontents
\chapter{Introduction}
\input{chapters/ch1}
\end{document}
但是,页码仅在文档的最后一页移动。介绍仅包含几个部分,并且不应用任何样式。虚线部分均不包含任何命令。
为什么页码仍然位于页面的中心?
答案1
如果是\pagestyle{plain}
固定的,不妨将其用于每个页面。
\documentclass[14pt]{report}
\usepackage{graphicx}
\graphicspath{pics/}
\usepackage[a4paper,top=25mm,bottom=25mm]{geometry}
\usepackage{fancyhdr}
\fancypagestyle{plain}{%
\fancyfoot{}
\fancyfoot[R]{\thepage}
}
\pagestyle{plain}
\title{
...
}
\author{
...
}
\date{}
\begin{document}
\maketitle
\chapter*{Abstract}
...
\tableofcontents
\chapter{Introduction}
%\input{chapters/ch1}
\end{document}