diff options
author | Eduard Itrich <eduard@itrich.net> | 2019-05-19 12:41:04 +0200 |
---|---|---|
committer | Eduard Itrich <eduard@itrich.net> | 2019-05-19 12:41:04 +0200 |
commit | 916e8f61b108bfeaabd7387e6d28b97ff9e2fe96 (patch) | |
tree | fa177cb096473a5f99952cf94b7db47d39f7ee99 | |
parent | 4fcd3b51eb34ec59c2759411d2dde9ffd8427fb8 (diff) | |
download | cv-916e8f61b108bfeaabd7387e6d28b97ff9e2fe96.tar.gz cv-916e8f61b108bfeaabd7387e6d28b97ff9e2fe96.tar.bz2 cv-916e8f61b108bfeaabd7387e6d28b97ff9e2fe96.tar.xz cv-916e8f61b108bfeaabd7387e6d28b97ff9e2fe96.zip |
Added StackOverflow and StackExchange to list of social info accounts
-rwxr-xr-x | README.md | 8 | ||||
-rwxr-xr-x | yaac-another-awesome-cv.cls | 10 |
2 files changed, 18 insertions, 0 deletions
@@ -89,6 +89,14 @@ Most social network have their command to render a clickable link or a simple te % Usage: \github{<github-nick>} \github{darwiin} +% Render author's stackoverflow profile (optional) +% Usage: \stackoverflow{<stackoverflow-user-id>} +\stackoverflow{759643} + +% Render author's stackexchange profile (optional) +% Usage: \stackexchange{<stackexchange-user-id>} +\stackexchange{396216} + % Render author's email (optional) % Usage: \email{<email adress>} \email{christophe.roger@mail.com} diff --git a/yaac-another-awesome-cv.cls b/yaac-another-awesome-cv.cls index ddac67a..546841a 100755 --- a/yaac-another-awesome-cv.cls +++ b/yaac-another-awesome-cv.cls @@ -173,6 +173,8 @@ \newcommand{\viadeoSymbol}{\faViadeo} \newcommand{\mobileSymbol}{\faMobile*} \newcommand{\githubSymbol}{\faGithub} +\newcommand{\stackoverflowSymbol}{\faStackOverflow} +\newcommand{\stackexchangeSymbol}{\faStackExchange} \newcommand{\mediumSymbol}{\faMedium} \newcommand{\bitbucketSymbol}{\faBitbucket} \newcommand{\websiteSymbol}{\faLink} @@ -238,6 +240,14 @@ % Usage: \github{<github-nick>} \newcommand*{\github}[1]{\sociallink{\githubSymbol}{https://www.github.com/#1}{github.com/#1}} % Github icon + URL +% Render author's stackoverflow profile (optional) +% Usage: \stackoverflow{<stackoverflow-user-id>} +\newcommand*{\stackoverflow}[1]{\sociallink{\stackoverflowSymbol}{https://www.stackoverflow.com/u/#1}{stackoverflow.com/u/#1}} + +% Render author's stackexchange profile (optional) +% Usage: \stackexchange{<stackexchange-user-id>} +\newcommand*{\stackexchange}[1]{\sociallink{\stackexchangeSymbol}{https://stackexchange.com/users/#1}{stackexchange.com/users/#1}} + % Render author's medium (optional) % Usage: \medium{<medium-nick>} \newcommand*{\medium}[1]{\sociallink{\mediumSymbol}{https://www.medium.com/@#1}{medium.com/#1}} |