Curricula Vitae / RésumésHeaders in Classicthesis-Styled CV

ModernCV, Friggeri, Plasmati, Classicthesis-CV, and more
Post Reply
mr_muffin
Posts: 1
Joined: Fri Jul 03, 2015 11:15 am

Headers in Classicthesis-Styled CV

Post by mr_muffin »

Good morning,
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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Headers in Classicthesis-Styled CV

Post by Johannes_B »

classicthesis uses package scrpage2 to set the headers and footers.

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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply