我需要它,因为我的页面在所有空间都写上了,我可以设置写有页码的变量的内容吗?或者,也许更简单,我如何在这些空间上写特定的文本?我需要逐页更改它。我会在每一页上设置它。
谢谢
雷纳托
答案1
下面是一个示例,展示如何使用包将页码替换为特定的文本fancyhdr
:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rfoot{My Text}
\begin{document}
\section{Introduction}
This is some text.
\newpage
\section{Conclusion}
This is some more text.
\end{document}
如果您只想在某些页面上用特定文本替换页码,可以使用以下\thispagestyle
命令:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rfoot{\thepage}
\fancypagestyle{myfancystyle}{
\fancyhf{}
\rfoot{My Text}
}
\begin{document}
\section{Introduction}
This is some text.
\newpage
\thispagestyle{myfancystyle}
\section{Conclusion}
This is some more text.
\end{document}