如何为一个文档中的特定页面设置不同的页眉?

如何为一个文档中的特定页面设置不同的页眉?

我有 latex 中的论文模板,开头有页面来设置论文的布局。例如,我有目录、表格列表、图表列表、符号和缩写。每个目录的第一页都显示标题,其他页面显示每种类型内容的标题,但符号和缩写除外,这些目录的第二页显示“表格列表”标题。你能帮助我吗,提前谢谢您。

答案1

根据您的论文模板,您可能能够使用以下方法明确设置标题

\markboth{Acronyms}{Acronyms}

\markboth{Notation}{Notation}

在相应部分的开头。

至少,当我遇到同样的问题时它对我有用。

答案2

请检查花式高清包。下面是一个例子:

\documentclass{book}

\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\rightmark}

\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0pt}

\begin{document}
\chapter{Chapter title}
\section{section title}

\lipsum[1-20]

\end{document}

答案之前已在这里

相关内容