如何使用活动 \maketitle 更改页码位置

如何使用活动 \maketitle 更改页码位置

我在尝试着将页码的位置从底部中央改为右下角。我尝试使用fancyhdr似乎是解决此问题最推荐的方法的包。但是,当我将它与命令一起使用时,\maketitlefancyhdr对第一页没有影响。在第二页上,数字的位置确实移动到了右下角,但我不喜欢它如何改变标题的格式。下面是我的代码的简化版本。有什么建议吗?

\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{fancyhdr}

\title{Some Random Title}
\author{Author Name}
\date{}

\begin{document}
\maketitle
\pagestyle{fancy}
\fancyhf{}
\rfoot{Page \thepage}

Some random words.    
\newpage
Some random words on second page.

\end{document}

第一页

第二页

答案1

\maketitle有效果的页面使用了plain页面样式。重新定义它。

\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhf{}
\fancyfoot[R]{Page \thepage}

% redefine the plain page style
\fancypagestyle{plain}{%
  \renewcommand{\headrulewidth}{0pt}% no rule above!
  \fancyhf{}\fancyfoot[R]{Page \thepage}%
}

\title{Some Random Title}
\author{Author Name}
\date{}

\begin{document}
\maketitle

Some random words.

\end{document}

相关内容