[Tex/LaTex] How to remove “curriculum vitae” text from heading of \documentclass{tccv}

cvtitles

I'm working with the Two Column CV template from https://www.sharelatex.com/templates/cv/

The script begins with:

\documentclass{tccv}
\usepackage[english]{babel}

I don't want it to say Curriculum Vitae at the top (as it current does), but I don't see where I can remove that text to either have it say "Resume" or simply have no text at all in the heading.

Best Answer

Here is the desired change (an original line commented, then changed):

\renewcommand\part[1]{%
    \twocolumn[%
    \begin{center}
    \vskip-\lastskip%
    {\usekomafont{part} #1} \medskip\\
    %{\fontfamily{pzc}\selectfont\Huge Curriculum vitae}
    {\fontfamily{pzc}\selectfont\Huge Resume}
    \bigskip
    \end{center}]}
Related Question