-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from Ntgllr/moderncv-researchidsocialsymbol-bug
"LaTeX Error: Command \researchidsocialsymbol undefined." in moderncv
- Loading branch information
Showing
9 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
%------------------------------------------------------------------------------- | ||
% built-in colors | ||
%------------------------------------------------------------------------------- | ||
|
||
\definecolor{black}{RGB}{0, 0, 0} | ||
\definecolor{red}{rgb}{0.95, 0.20, 0.20} | ||
\definecolor{darkgrey}{rgb}{0.45, 0.45, 0.45} | ||
\definecolor{orange}{rgb}{0.95, 0.55, 0.15} | ||
\definecolor{burgundy}{rgb}{0.596078, 0, 0}% 139/255 (0.545098) or 152/255 (0.596078) | ||
\definecolor{purple}{rgb}{0.50, 0.33, 0.80} | ||
\definecolor{lightblue}{rgb}{0.22, 0.45, 0.70} | ||
\definecolor{green}{rgb}{0.35, 0.70, 0.30} | ||
|
||
%------------------------------------------------------------------------------- | ||
% default colors | ||
%------------------------------------------------------------------------------- | ||
|
||
\colorlet{default-socialicon-color}{darkgrey} | ||
|
||
%------------------------------------------------------------------------------- | ||
% colors for social icons | ||
%------------------------------------------------------------------------------- | ||
|
||
% \definecolor{weixin}{rgb}{.184, .533, .098} | ||
% \definecolor{linkedin}{HTML}{0a66c2} | ||
% \definecolor{orcid}{HTML}{a6ce39} | ||
% \definecolor{twitter}{RGB}{29, 155, 240} | ||
% \definecolor{facebook}{HTML}{1b74e4} | ||
% TODO: add more colors | ||
|
||
%------------------------------------------------------------------------------- | ||
% custom colors | ||
%------------------------------------------------------------------------------- | ||
|
||
% \definecolor{tsinghua}{HTML}{791CB5} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
inst/rmarkdown/templates/moderncv/skeleton/moderncviconsacademic.sty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
%% start of file `moderncviconsacademic.sty'. | ||
%% Copyright 2013-2015 Xavier Danaux ([email protected]), 2020-2022 moderncv maintainers (github.com/moderncv). | ||
% | ||
% This work may be distributed and/or modified under the | ||
% conditions of the LaTeX Project Public License version 1.3c, | ||
% available at http://www.latex-project.org/lppl/. | ||
|
||
|
||
%------------------------------------------------------------------------------- | ||
% identification | ||
%------------------------------------------------------------------------------- | ||
\NeedsTeXFormat{LaTeX2e} | ||
\ProvidesPackage{moderncviconsacademic}[2022-02-21 v2.3.1 modern curriculum vitae icons: academicons] | ||
|
||
|
||
%------------------------------------------------------------------------------- | ||
% required packages | ||
%------------------------------------------------------------------------------- | ||
% Package for academic icons | ||
\RequirePackage{academicons} | ||
\RequirePackage{xcolor} | ||
|
||
%------------------------------------------------------------------------------- | ||
% set colors | ||
%------------------------------------------------------------------------------- | ||
\input{colors} | ||
|
||
\providecolor{orcid}{named}{default-socialicon-color} | ||
\providecolor{researchgate}{named}{default-socialicon-color} | ||
\providecolor{researcherid}{named}{default-socialicon-color} | ||
\providecolor{googlescholar}{named}{default-socialicon-color} | ||
|
||
%------------------------------------------------------------------------------- | ||
% all symbols described in moderncv.cls | ||
%------------------------------------------------------------------------------- | ||
%\newcommand*{\listitemsymbol} {\labelitemi~} | ||
%\newcommand*{\addresssymbol} {} | ||
%\newcommand*{\bornsymbol} {} | ||
%\newcommand*{\mobilephonesymbol} {} | ||
%\newcommand*{\fixedphonesymbol} {} | ||
%\newcommand*{\faxphonesymbol} {} | ||
%\newcommand*{\emailsymbol} {} | ||
%\newcommand*{\homepagesymbol} {} | ||
%\newcommand*{\linkedinsocialsymbol} {} | ||
%\newcommand*{\xingsocialsymbol} {} | ||
%\newcommand*{\twittersocialsymbol} {} | ||
%\newcommand*{\githubsocialsymbol} {} | ||
%\newcommand*{\gitlabsocialsymbol} {} | ||
%\newcommand*{\stackoverflowsocialsymbol}{} | ||
%\newcommand*{\bitbucketsocialsymbol} {} | ||
%\newcommand*{\skypesocialsymbol} {} | ||
\renewcommand*{\orcidsocialsymbol} {{\color{orcid}\small\aiOrcid}~} | ||
\renewcommand*{\researchgatesocialsymbol} {{\color{researchgate}\small\aiResearchGateSquare}~} % alternative: \aiResearchGate | ||
\renewcommand*{\researcheridsocialsymbol} {{\color{researcherid}\small\aiResearcherIDSquare}~} % alternative: \aiResearcherID | ||
\renewcommand*{\googlescholarsocialsymbol}{{\color{googlescholar}\raisebox{-1pt}{\large\aiGoogleScholar}}~} | ||
%\newcommand*{\telegramsocialsymbol} {} | ||
%\newcommand*{\whatsappsocialsymbol} {} | ||
%\newcommand*{\matrixsocialsymbol} {} | ||
%\newcommand*{\signalsocialsymbol} {} | ||
|
||
|
||
\endinput | ||
|
||
%% end of file `moderncviconsacademic.sty'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters