文章类中第一页后的居中页眉

文章类中第一页后的居中页眉

我可以不明确输入\newpage或分页符来执行此操作吗?请注意,我的文章中也有章节。

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\pagestyle{headings}
\thispagestyle{empty}
\markright{\hfill Running Header\hfill}
\section{test1}
\lipsum[1-4]
\section{test2}
\lipsum[1-4]
\section{test3}
\lipsum[1-4]
\end{document}

笔记除了答案之外,如果您想要在中心放置特定文本:\makeatletter\def\@oddhead{\hfil{\small\emph{Specific text}}\hfil}\makeatother

答案1

是的

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\pagestyle{headings}
\thispagestyle{empty}
\makeatletter\def\@oddhead{\hfil{\slshape\rightmark}\hfil}\makeatother
\section{test1}
\lipsum[1-4]
\section{test2}
\lipsum[1-4]
\section{test3}
\lipsum[1-4]
\end{document}

相关内容