Curricula Vitae / Résumés ⇒ changing name from upper case to sentence case
changing name from upper case to sentence case
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!
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
changing name from upper case to sentence case
\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
.