Hello,
Is it possible to incorporate academicons (https://jpswalsh.github.io/academicons/) into a pagedown CV? If so, how?
Thanks.
As in any R Markdown HTML format, it is possible to use academicons. I see two solutions, pick the one you prefer.
As stated in the academicons documentation, you can use the RawGit service to refer to its CSS (you need an internet connexion). You need to modify your YAML header as follows:
---
title: "Lijia Yu's resume"
author: Lijia Yu
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
self_contained: false
css:
- resume
- https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css
---
Then, you can use academicons in your document, for instance:
<i class="ai ai-google-scholar-square"></i>
If you need an offline solution, you can install the development version of ropenscilabs/icon.
Therefore, you can insert an academicons icon with:
`r icon::ai("academia")`
Fantastic, both work well for me. I appreciate the quick response, thank you.
Most helpful comment
As in any R Markdown HTML format, it is possible to use academicons. I see two solutions, pick the one you prefer.
Use the CSS served by RawGit
As stated in the academicons documentation, you can use the RawGit service to refer to its CSS (you need an internet connexion). You need to modify your YAML header as follows:
Then, you can use academicons in your document, for instance:
Use the ropenscilabs/icon package
If you need an offline solution, you can install the development version of ropenscilabs/icon.
Therefore, you can insert an academicons icon with: