如何在页码前添加文字?

如何在页码前添加文字?

我需要在每个页码前添加“HS -”。我该怎么做?

答案1

最简单的更新方法\thepage

\renewcommand{\thepage}{H.S.~--~\arabic{page}}

这将反映在显示页码的任何地方,甚至在参考文献中。

答案2

最好用于fancyhdr此。

\documentclass{book}
\usepackage{fancyhdr}
\usepackage{blindtext}
% New page style
\fancypagestyle{mypagestyle}{
\fancyhf{}
\fancyfoot[C]{H. S. -- \thepage}  %% change [C] to either [L] or [R] if needed.
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
\makeatletter
\let\ps@plain\ps@mypagestyle%% comment this to keep chapter page style
%\let\ps@empty\ps@mypagestyle
\makeatother
\pagestyle{mypagestyle}

\begin{document}
  \Blinddocument
\end{document}

在此处输入图片描述

相关内容