Curricula Vitae / Résumés ⇒ Headers in Classicthesis-Styled CV
Headers in Classicthesis-Styled CV
I learned it is good practice to put your name as header on each page of the CV. I am using Classicthesis-Styled CV. I tried to use the fancyhdr package but it returns me an error message:
LaTeX Error: Command \chead already defined.
Or name \end... illegal, see p.192 of the manual.
Which I understand it means there is already a way of using headers in the document class that I am not allowed to override?
How can I define a header with this document class?
Thanks a lot
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Headers in Classicthesis-Styled CV
Change the documentclass line to read the following
\documentclass[headinclude]{scrartcl}
Add this before the document starts:
Code: Select all
\chead{THIS IS THE HEADER}
\pagestyle{scrheadings}