由于各种原因,我需要将我的姓名和头衔放在 LaTeX 文档的标题中。原因是我的页数有限制,需要 \maketitle 占用的额外空间。有人知道怎么做吗?作为参考,我使用的是标准 amsart 文档类。
到目前为止,我尝试过的是使用 fancyhdr 包,然后编写
\pagestyle{fancy}
\headheight=14pt
\fancyhf{}
\lhead{name}
\rhead{title}
在序言中,但我无法让页眉出现在第一页上(所需的页眉出现在后续页面上)。有人有什么建议吗?
答案1
包括\thispagestyle{fancy}
将标题添加到第一页:
笔记:
- 包裹
lipsum
仅用于提供虚拟文本。您的文档中不需要它。
代码:
\documentclass{amsart}
\usepackage{fancyhdr}
\usepackage{lipsum}
\pagestyle{fancy}
\headheight=14pt
\fancyhf{}
\lhead{name}
\rhead{title}
\thispagestyle{fancy}
\begin{document}
\lipsum[1-10]
\end{document}