Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ Most social network have their command to render a clickable link or a simple te
% Usage: \stackexchange{<stackexchange-user-id>}
\stackexchange{396216}

% Render author's twitter profile (optional)
% Usage: \twitter{<twitter-user-name>}
\twitter{EFF}

% Render author's email (optional)
% Usage: \email{<email adress>}
\email{christophe.roger@mail.com}
Expand Down
5 changes: 5 additions & 0 deletions yaac-another-awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
\newcommand{\stackexchangeSymbol}{\faStackExchange}
\newcommand{\mediumSymbol}{\faMedium}
\newcommand{\bitbucketSymbol}{\faBitbucket}
\newcommand{\twitterSymbol}{\faTwitter}
\newcommand{\websiteSymbol}{\faLink}


Expand Down Expand Up @@ -280,6 +281,10 @@
% Usage: \bitbucket{<bitbucket-account-name>}
\newcommand*{\bitbucket}[1]{\sociallink{\bitbucketSymbol}{https://bitbucket.com/#1}{bitbucket.com/#1}}

% Render author's twitter profile (optional)
% Usage: \twitter{<twitter-user-name>}
\newcommand*{\twitter}[1]{\sociallink{\twitterSymbol}{https://twitter.com/#1}{twitter.com/#1}}

% Render author's email (optional)
% Usage: \email{<email adress>}
\newcommand*{\email}[1]{\sociallink{\mailSymbol}{mailto:#1}{#1}}
Expand Down