This commit is contained in:
Marcin Copik 2025-12-29 19:05:54 +00:00 committed by GitHub
commit b3a47fef01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 4 deletions

View file

@ -197,6 +197,7 @@
\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*{\sectioniconstyle}[2]{{\fontsize{16pt}{1em}\bodyfont\bfseries\color{awesome}{#2} \color{text} \space \@sectioncolor #1}}
\newcommand*{\subsectionstyle}[1]{{\fontsize{12pt}{1em}\bodyfont\scshape\textcolor{text}{#1}}}
\newcommand*{\paragraphstyle}{\fontsize{9pt}{1em}\bodyfontlight\upshape\color{text}}
@ -665,10 +666,14 @@
}
% Define a section for CV
% Usage: \cvsection{<section-title>}
\newcommand{\cvsection}[1]{%
% Usage: \cvsection[<section-icon>]{<section-title>}
\newcommand{\cvsection}[2][]{%
\vspace{\acvSectionTopSkip}
\sectionstyle{#1}
\ifempty{#1}{
\sectionstyle{#2}
}{
\sectioniconstyle{#2}{#1}
}
\phantomsection
\color{sectiondivider}\vhrulefill{0.9pt}
}

View file

@ -1,7 +1,7 @@
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Education}
\cvsection[\faGraduationCap]{Education}
%-------------------------------------------------------------------------------