自动更改标题

自动更改标题

是否可以将一个页眉用于第一页,将另一个页眉用于后续页面?如果可以,我该如何自动执行此操作,而不使用命令\thispagestyle{___}

谢谢!

答案1

如果您使用标准类,并使用 -command\maketitle在第一页创建标题,则会自动执行此操作。只需\pagestyle{headings}在前言中和\maketitle之后添加即可\begin{document}

\documentclass{article}
\pagestyle{headings}
% \AtBeginDocument{\thispagestyle{plain}} % uncomment this line if you do not 
                                          % use `\maketitle`
\begin{document}
\title{An Important Agreement}
\author{Me}
\maketitle
%% Remove the three lines above if you do not use `\maketitle` to set a title.

Text

\newpage

Text
\end{document}

如果你不使用maketitle,就放

\AtBeginDocument{\thispagestyle{plain}}

在序言中,最符合逻辑的是`\pagestyle-command

我解释了你想\thispagestyle在文中避免的问题。如果你需要更高级的解决方案,你必须编写一个宏,测试第 1 页和第 2 页并设置正确的页面样式。请描述你的目标。

如果您想摆脱序言中的命令,您必须编写自己的类文件或包(.sty-file)。

相关内容