Hi there,
I am using the Medium Length Professional CV template (http://www.latextemplates.com/template/ ... ssional-cv) and I am really happy with it so far. My question is about the case of the name that appears at the top of the CV.
How do I change my name at the top from uppercase lettering to sentence case?
For example, right now it reads: JOHN SMITH. I would like it to say: John Smith.
I have tried editing the resume.cls file to add \def\namefont{\normalfont} as you would in other documents, but that does not seem to do the trick. Any tips?
Thanks in advance!
Curricula Vitae / Résumés ⇒ changing name from upper case to sentence case
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
changing name from upper case to sentence case
Please add right before
Please note, that
\begin{document}
:
Code: Select all
\makeatletter
\def\printname{%
\hfil{\namesize\bfseries\@name}\hfil
\nameskip\break
}
\makeatother
Please note, that
\bf
is obsolete for two decades. It should be \bfseries
.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: changing name from upper case to sentence case
It worked. Thank you!