Please link the source of your template.
If the template I found using your information is the one you used, then you should remove the
\MakeUppercase
command in the definition of the
\printname
command.
Original from
resume.cls
file:
Code: Select all
% \printname is used to print the name as a page header
\def \printname {
\begingroup
\hfil{\MakeUppercase{\namesize\bf \@name}}\hfil
\nameskip\break
\endgroup
}
The modified command that should be added to your preamble:
Code: Select all
\makeatletter
\def \printname {
\begingroup
\hfil{\namesize\bf \@name}\hfil
\nameskip\break
\endgroup
}
\makeatother
A note on the title: Printing the words as they were entered is not the same as lower case.