Revtex 4 中的页面标记

Revtex 4 中的页面标记

如何在 Revtex 4 中向特定页面添加页面标记?

并且,如何包装长页标记?

具体来说,我需要在一系列页面上的每一页上添加一句话“此页面可能包含专有信息......”。

这是我在文档中使用的所有包的部分示例。

markboth 里面的文字需要换行。

\documentclass[pra,11pt,nofootinbib]{revtex4}
\usepackage{amsmath}    % need for subequations
\usepackage{amssymb}    % need for subequations
\usepackage{graphicx}   % need for figures
\usepackage{subfigure}  % use for side-by-side figures
\usepackage{enumitem}

\usepackage{placeins}
\usepackage{makecell}
\usepackage{framed}
\usepackage{changebar}

\pagestyle{myheadings}

\begin{document}

\section{Introduction}
Some text, blah blas

\label{firstsecret}

\markboth{}{May contain trade secrets or commercial or financial information that is privileged or confidential and exempt from public disclosure.}

Here goes some big secret, more blah blah


\label{laststsecret}

\end{document}

答案1

一个解决方案似乎是使用 fancyhdr 包,如下所示。

对于序言,我们可以使用它来建立一个类似于普通的页面样式,并在右上角显示页码。

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\rhead{\thepage}

然后将文本添加到当前页面标题的中心位置,并换行,

\chead{Long sentence with line wrap here\\ followed by the rest of the sentence.}

我们可以重置所有内容并返回仅数字,

\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\rhead{\thepage}

需要注意的是,需要注意线条的插入位置和生效位置。

相关内容