编辑页码,从底部中间位置到右侧位置,并显示“第 1 页”、“第 2 页”等

编辑页码,从底部中间位置到右侧位置,并显示“第 1 页”、“第 2 页”等

我想知道是否可以将页码位置移动到右下角或右上角,并让它写“第 1 页”、“第 2 页”等,而不是“1”、“2”?

我目前正在使用\pagenumbering{arabic}

答案1

在此处输入图片描述

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

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

\begin{document}
    
    
    \maketitle
    \thispagestyle{empty}
    \newpage
    \pagestyle{fancy}
    \fancyhf{}
    \rfoot{Page \thepage}
    \setcounter{page}{1}
    Some random words.    
    \newpage
    Some random words on second page.
    
\end{document}

相关内容