有人能告诉我为什么我的页眉没有从章节的第一页开始吗?我怎样才能让我的页眉从文档的所有页面开始?(不包括我的首页)
提前致谢
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\setlength\headheight{90pt}
\begin{document}
\fancyhead[CO,CE]{\transparent{1} \includegraphics[width=16cm]{images/test.jpg}}
\chapter{some chapter}
text
\newpage
text
\end{document}
答案1
参见“7 重新定义plain
风格”fancyhdr
参见的文档.应用于简化的例子:
\documentclass{report}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\fancyhead[C]{LOGO}
\fancypagestyle{plain}{%
\fancyhf{}%
\fancyhead[C]{LOGO}%
}
\begin{document}
\chapter{some chapter}
text
\newpage
text
\end{document}
当然,应该在某处插入页码。