Skip to content

Commit

Permalink
fix cvsection n < 3 issues
Browse files Browse the repository at this point in the history
Fixes issue with cvsection shorter than 3 characters failing to build. Also resolves issues with spaces not being tokenized so `~` or `\ ` are no longer needed. Also allows for nameless cvsections.
  • Loading branch information
dcsim authored Jun 28, 2024
1 parent e6efa6b commit 2ce1a9c
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,6 @@
\newbool{acvSectionColorHighlight}
\setbool{acvSectionColorHighlight}{true}

% Awesome section color
\def\@sectioncolor#1#2#3{%
\ifbool{acvSectionColorHighlight}{{\color{awesome}#1#2#3}}{#1#2#3}%
}


%-------------------------------------------------------------------------------
% Configuration for fonts
%-------------------------------------------------------------------------------
Expand All @@ -181,7 +175,14 @@
\newcommand*{\headersocialstyle}[1]{{\fontsize{6.8pt}{1em}\headerfont\color{text} #1}}
\newcommand*{\headerquotestyle}[1]{{\fontsize{9pt}{1em}\bodyfont\itshape\color{darktext} #1}}
\newcommand*{\footerstyle}[1]{{\fontsize{8pt}{1em}\footerfont\scshape\color{lighttext} #1}}
\newcommand*{\sectionstyle}[1]{{\fontsize{16pt}{1em}\bodyfont\bfseries\color{text}\@sectioncolor #1}}
\newcommand*{\sectionstyleface}[1]{{\fontsize{16pt}{1em}\bodyfont\bfseries #1}}
\newcommand*{\sectionstyle}[1]{%
\def\@acvSectionTmp{#1}
\ifthenelse{\boolean{acvSectionColorHighlight}}{%
\StrSplit{\@acvSectionTmp}{3}{\acvSectionStringAwesome}{\acvSectionStringPlain}%
\color{awesome}\sectionstyleface{\acvSectionStringAwesome%
\color{text}{\acvSectionStringPlain}}}%
{\color{text}\sectionstyleface{\@acvSectionTmp}}}
\newcommand*{\subsectionstyle}[1]{{\fontsize{12pt}{1em}\bodyfont\scshape\textcolor{text}{#1}}}
\newcommand*{\paragraphstyle}{\fontsize{9pt}{1em}\bodyfontlight\upshape\color{text}}

Expand Down Expand Up @@ -210,7 +211,14 @@
\newcommand*{\skillsetstyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\color{text} #1}}

% For elements of the cover letter
\newcommand*{\lettersectionstyle}[1]{{\fontsize{14pt}{1em}\bodyfont\bfseries\color{text}\@sectioncolor #1}}
\newcommand*{\lettersectionstyleface}[1]{{\fontsize{14pt}{1em}\bodyfont\bfseries #1}}
\newcommand*{\lettersectionstyle}[1]{%
\def\@acvLetterSectionTmp{#1}
\ifthenelse{\boolean{acvSectionColorHighlight}}{%
\StrSplit{\@acvLetterSectionTmp}{3}{\acvLetterSectionStringAwesome}{\acvLetterSectionStringPlain}%
\color{awesome}\sectionstyleface{\acvLetterSectionStringAwesome%
\color{text}{\acvLetterSectionStringPlain}}}%
{\color{text}\lettersectionstyleface{\@acvLetterSectionTmp}}}
\newcommand*{\recipientaddressstyle}[1]{{\fontsize{9pt}{1em}\bodyfont\scshape\color{graytext} #1}}
\newcommand*{\recipienttitlestyle}[1]{{\fontsize{11pt}{1em}\bodyfont\bfseries\color{darktext} #1}}
\newcommand*{\lettertitlestyle}[1]{{\fontsize{10pt}{1em}\bodyfontlight\bfseries\color{darktext} \underline{#1}}}
Expand Down

0 comments on commit 2ce1a9c

Please sign in to comment.