[Tex/LaTex] Showcase of nice looking headers

header-footer

So I was searching through tex.stackexchange about headers, and I haven't seen this kind of topic.

I was thinking of including header in my thesis but I'm still not sure whether to do it or not.

Still regardless of my own issues, I was wondering do you guys, here on tex.stackexchange, have any preferred style or custom code to make your headers look nice and shiny 😀

So if you have, why not boast a bit, and in turn help someone out who might need it in the future 🙂

Best Answer

For mine I wanted to have the section name on even pages and the chapter name on odd pages. I am a huge fan of small caps; therefore I wanted it in small caps. Here is what I had

\pagestyle{fancy}
\fancyhead{}

\renewcommand{\chaptermark}[1]{\markboth{\small\textsc{\thechapter.\ #1}}{}}
\renewcommand{\sectionmark}[1]{\markright{\small\textsc{\thesection.\ #1}}{}}
\fancyhead[LE]{\rightmark}
\fancyhead[RO]{\leftmark}
Related Question