forked from mitchelloharawild/vitae
-
Notifications
You must be signed in to change notification settings - Fork 0
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 mitchelloharawild#228 from isabelle-greco/ig-add-p…
…ronouns Adding pronouns to vitae package
- Loading branch information
Showing
22 changed files
with
53 additions
and
15 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,10 @@ Authors@R: c( | |
person("Rob", "Hyndman", email="[email protected]", role=c("aut"), comment = c(ORCID = "0000-0002-2140-5352")), | ||
person("Yihui", "Xie", role = c("ctb"), comment = c(ORCID = "0000-0003-0645-5666")), | ||
person("Albert", "Krewinkel", role = c("cph"), comment = c("Multiple bibliographies lua filter")), | ||
person("JooYoung", "Seo", role="ctb", comment = c(ORCID = "0000-0002-4064-6012"))) | ||
person("JooYoung", "Seo", role="ctb", comment = c(ORCID = "0000-0002-4064-6012")), | ||
person("Isabelle", "Greco", role="ctb", comment = c(ORCID = "0000-0003-1604-6639"))) | ||
Description: Provides templates and functions to simplify the production and maintenance of curriculum vitae. | ||
Depends: | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: | ||
rlang, | ||
|
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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name: Marie | |
surname: Curie | ||
position: "Professor" | ||
address: "School of Physics & Chemistry, École Normale Supérieure" | ||
pronouns: she/her | ||
phone: +1 22 3333 4444 | ||
www: mariecurie.com | ||
email: "[email protected]" | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name: Marie | |
surname: Curie | ||
position: "Professor" | ||
address: "School of Physics & Chemistry, École Normale Supérieure" | ||
pronouns: she/her | ||
phone: +1 22 3333 4444 | ||
www: mariecurie.com | ||
email: "[email protected]" | ||
|
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 |
---|---|---|
|
@@ -5,14 +5,15 @@ surname: Curie | |
position: "Professor" | ||
address: "School of Physics & Chemistry, École Normale Supérieure" | ||
phone: +1 22 3333 4444 | ||
pronouns: she/her | ||
www: mariecurie.com | ||
email: "[email protected]" | ||
twitter: mariecurie | ||
github: mariecurie | ||
linkedin: mariecurie | ||
date: "`r format(Sys.time(), '%B %Y')`" | ||
aboutme: "Marie is a Polish and naturalized-French physicist and chemist who conducts pioneering research on radioactivity." | ||
output: | ||
output: | ||
vitae::markdowncv: | ||
theme: kjhealy | ||
--- | ||
|
@@ -37,7 +38,7 @@ tribble( | |
"Informal studies", "1889-91", "Flying University", "Warsaw, Poland", | ||
"Master of Physics", "1893", "Sorbonne Université", "Paris, France", | ||
"Master of Mathematics", "1894", "Sorbonne Université", "Paris, France" | ||
) %>% | ||
) %>% | ||
detailed_entries(Degree, Year, Institution, Where) | ||
``` | ||
|
||
|
@@ -48,10 +49,10 @@ tribble( | |
~Year, ~Type, ~Desc, | ||
1903, "Physics", "Awarded for her work on radioactivity with Pierre Curie and Henri Becquerel", | ||
1911, "Chemistry", "Awarded for the discovery of radium and polonium" | ||
) %>% | ||
) %>% | ||
brief_entries( | ||
glue::glue("Nobel Prize in {Type}"), | ||
Year, | ||
Year, | ||
Desc | ||
) | ||
``` | ||
|
@@ -65,4 +66,3 @@ knitr::write_bib(c("vitae", "tibble"), "packages.bib") | |
bibliography_entries("packages.bib") %>% | ||
arrange(desc(author$family), issued) | ||
``` | ||
|
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
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
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ surname: Curie | |
position: "Professor" | ||
address: "School of Physics & Chemistry, École Normale Supérieure" | ||
phone: +1 22 3333 4444 | ||
pronouns: she/her | ||
profilepic: mariecurie.jpg | ||
www: mariecurie.com | ||
email: "[email protected]" | ||
|
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