Curricula Vitae / Résumés ⇒ changing color of title/name in medium-length-professional-cv
changing color of title/name in medium-length-professional-cv
I'm new to this and have managed to change the color of the section headings, but was trying to change the name of the name of the CV user to match this. How would I go about this?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
changing color of title/name in medium-length-professional-cv
welcome to the forum!
You can put the color in the \name macro:
Code: Select all
\protected\def\mycolor{\color{orange}}
\name{\mycolor John Smith} % Your name
etex'
s \protected macro feature, so the \MakeUppercase
within the name printing macro doesn't change orange to ORANGE.In general, I would not put style changes into a name or text macro, but it's the easiest here to get it done quickly.
Stefan