diff options
author | Christophe ROGER <darwiin@users.noreply.github.com> | 2018-10-12 00:20:42 +1100 |
---|---|---|
committer | Christophe ROGER <darwiin@users.noreply.github.com> | 2018-10-12 00:20:42 +1100 |
commit | f79eb4bcc3b1171f4aa22169fd8cc57baf87bd25 (patch) | |
tree | d525f16bfa7b20ab96197adbf882c6f19f9782a7 /yaac-another-awesome-cv.cls | |
parent | 52d65b7d90ac06e8d486fde1225a3d8986d09b86 (diff) | |
parent | ba16e023e3e89eb65fccfc5aa9a981e785aedcca (diff) | |
download | cv-f79eb4bcc3b1171f4aa22169fd8cc57baf87bd25.tar.gz cv-f79eb4bcc3b1171f4aa22169fd8cc57baf87bd25.tar.bz2 cv-f79eb4bcc3b1171f4aa22169fd8cc57baf87bd25.tar.xz cv-f79eb4bcc3b1171f4aa22169fd8cc57baf87bd25.zip |
Merge branch 'master' of github.com:darwiin/yaac-another-awesome-cv into local-github
Diffstat (limited to 'yaac-another-awesome-cv.cls')
-rwxr-xr-x | yaac-another-awesome-cv.cls | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/yaac-another-awesome-cv.cls b/yaac-another-awesome-cv.cls index d4b957c..2165c9f 100755 --- a/yaac-another-awesome-cv.cls +++ b/yaac-another-awesome-cv.cls @@ -63,7 +63,7 @@ \RequirePackage[usenames,dvipsnames]{xcolor} \RequirePackage{fullpage} \RequirePackage[margin=1.5cm]{geometry} -\RequirePackage{fontawesome} +\RequirePackage{fontawesome5} \RequirePackage{hyperref} \RequirePackage{titlesec} \RequirePackage{array} @@ -167,12 +167,14 @@ % Font Awesome icons aliases \newcommand{\mailSymbol}{\faAt} -\newcommand{\locationSymbol}{\faMapMarker} +\newcommand{\locationSymbol}{\faMapMarker*} \newcommand{\infoSymbol}{\faInfo} -\newcommand{\linkedinSymbol}{\faLinkedin} +\newcommand{\linkedinSymbol}{\faLinkedinIn} \newcommand{\viadeoSymbol}{\faViadeo} -\newcommand{\mobileSymbol}{\faMobilePhone} +\newcommand{\mobileSymbol}{\faMobile*} \newcommand{\githubSymbol}{\faGithub} +\newcommand{\mediumSymbol}{\faMedium} +\newcommand{\bitbucketSymbol}{\faBitbucket} \newcommand\link[2]{\color{linkcolor}\href{#1}{#2}\color{Black} } \newcommand\important[1]{\textbf #1} @@ -234,13 +236,21 @@ % Usage: \github{<github-nick>} \newcommand*{\github}[1]{\sociallink{\githubSymbol}{https://www.github.com/#1}{github.com/#1}} % Github icon + URL +% Render author's medium (optional) +% Usage: \medium{<medium-nick>} +\newcommand*{\medium}[1]{\sociallink{\mediumSymbol}{https://www.medium.com/@#1}{medium.com/#1}} + +% Render author's bitbucket (optional) +% Usage: \bitbucket{<bitbucket-account-name>} +\newcommand*{\bitbucket}[1]{\sociallink{\bitbucketSymbol}{https://bitbucket.com/#1}{bitbucket.com/#1}} + % Render author's email (optional) % Usage: \email{<email adress>} \newcommand*{\email}[1]{\sociallink{\mailSymbol}{mailto:#1}{#1}} % Render a website link (optional) -% Usage: \email{<email adress>} -\newcommand*{\website}[2]{\sociallink{\faExternalLink}{#1}{#2}} +% Usage: \website{<website name>}{<website adress>} +\newcommand*{\website}[2]{\sociallink{\faLink}{#1}{#2}} % Render author's mobile phone (optional) % Usage: \smartphone{<mobile phone number>} @@ -356,7 +366,7 @@ % Render a skill in the skills environment % Usage: \skill{<skill>}{<level>} \newcommand\skill[2]{ - \textbf{#1} & \foreach \x in {1,...,5}{{\color{accentcolor!80} \ifnumgreater{\x}{#2}{\faCircleThin}{\faCircle}}\enspace } \\ + \textbf{#1} & \foreach \x in {1,...,5}{{\color{accentcolor!80} \ifnumgreater{\x}{#2}{\faCircle[regular]}{\faCircle}}\enspace } \\ } \newcolumntype{E}{>{\raggedright\arraybackslash}p{\rightcolumnlength}} @@ -418,12 +428,12 @@ % {<link1> <link2>} % {<Project description>} % {<techno1>,<techno2>} -\newcommand\project[5]{ +\newcommand\project[4]{ \begin{minipage}[t]{\dimexpr(\linewidth) - 1.5em} \textbf{\textsc{#1}} \hfill \textsc{#2}\smallskip\\ #3\\ #4\smallskip\\ - \footnotesize{\foreach \n in {#5}{\cvtag{\n}}}\\ + %\footnotesize{\foreach \n in {#5}{\cvtag{\n}}}\\ \end{minipage} \\* } |