an anyone tell me why my header doenst start on the first page of my chapters? How can I let my header start on all the pages of the document? (Excluding my frontpage)
Thanks in advance
\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}
\chapterincludesthispagestyle{plain}. Maybe try adding this to your preamble:\usepackage{etoolbox} \apptocmd{\chapter}{\thispagestyle{fancy}}{}{}(not tested). – Bernard Oct 01 '16 at 09:07\chapter{my stuff}not\begin{chapter}– David Carlisle Oct 01 '16 at 09:35