Skip to content

Commit 288f0e3

Browse files
committed
cv_fr
1 parent 5facbce commit 288f0e3

36 files changed

+1474
-9
lines changed

cv.Rmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Rémi
33
surname: Thériault
44
profilepic: "img/profile.png"
5-
position: "PhD Student"
6-
qualifications: "MSc"
7-
address: "Université du Québec à Montréal, Montréal, Québec, Canada"
5+
position: "Postdoctoral Fellow"
6+
qualifications: "PhD"
7+
address: "New York University, New York, USA"
88
phone: (438) 995-7648
99
www: remi-theriault.com
1010

cv.pdf

-358 Bytes
Binary file not shown.

cv_fr.Rmd

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
---
2+
name: Rémi
3+
surname: Thériault
4+
profilepic: "img/profile.png"
5+
position: "Chercheur postdoctoral"
6+
qualifications: "PhD"
7+
address: "New York University, New York, USA"
8+
phone: (438) 995-7648
9+
www: remi-theriault.com
10+
11+
twitter: rempsyc
12+
github: rempsyc
13+
# linkedin: rempsyc
14+
15+
aboutme: |
16+
\RaggedRight Mes intérêts se situent à l’intersection de la psychologie sociale, des neurosciences et de la psychologie positive, et mes recherches se penchent sur le bien-être optimal, la cohésion sociale, et notre rapport à l’environnement. Dans mes recherches postdoctorales, je tente de réduire la polarisation politique via le développement d'identités sociales partagées. Je suis également passionné par la science ouverte, la science reproductible, la métascience et la science des données à l’aide de R (ce CV a aussi été réalisé en R).
17+
18+
date: "`r format(Sys.time(), '%B %Y')`"
19+
headcolor: "6FA3CE" # my shirt on the profil pic is 839AC4, but we take a bit lighter for better look
20+
urlcolor: blue
21+
linkcolor: blue
22+
output:
23+
vitae::awesomecv:
24+
page_total: true
25+
---
26+
27+
```{r setup, include = FALSE}
28+
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
29+
30+
#######################
31+
#### SHORT VERSION ####
32+
#######################
33+
34+
# Whether to print a shortened version of the CV
35+
short <- FALSE
36+
37+
########################
38+
#### PACKAGE SETUP #####
39+
########################
40+
41+
# Required packages
42+
library(vitae)
43+
library(dplyr)
44+
45+
# For Google scholar data/visualization
46+
library(scholar)
47+
library(ggplot2)
48+
library(forcats)
49+
library(patchwork)
50+
library(see)
51+
library(rsvg)
52+
library(kableExtra)
53+
54+
# To format links throughout the CV
55+
source("files/format_links.R")
56+
57+
########################
58+
#### GOOGLE SCHOLAR ####
59+
########################
60+
61+
# Specify your Google scholar profile
62+
scholar.profile <- "NrfwEncAAAAJ" # Get it from your Google Scholar profile URL
63+
64+
# Specify your Google scholar short author name
65+
author.name <- "rém thériault"
66+
# Note: correct name may vary (e.g., if you inconsistently used middle name initials)
67+
# Dominique Makowski's was simply "d makowski", so the pattern is unclear
68+
# But usually it seems 1-3 letters from first name plus full last name
69+
70+
# When in doubt, the correct author name can be obtained through:
71+
# source("files/get_scholar_name.R") # (after defining 'scholar.profile' above)
72+
73+
# Name inconsistencies should be corrected manually in file 'files/make_data_impact.R' (lines 14-16).
74+
75+
########################
76+
##### INSTRUCTIONS #####
77+
########################
78+
79+
# Change the order of sections below as desired.
80+
# Edit the individual files ("childs") to edit the content as desired.
81+
# Add `eval = !short` to code chunks to make them optional for the short version
82+
83+
# See all instructions and tips here: https://github.com/rempsyc/cv
84+
85+
```
86+
87+
```{r Education parent, child=c('fr/sections/education.Rmd')}
88+
```
89+
90+
```{r Publications parent, child=c('fr/sections/publications.Rmd')}
91+
```
92+
93+
```{r Software parent, child=c('fr/sections/software.Rmd')}
94+
```
95+
96+
```{r Grants parent, child=c('fr/sections/grant.Rmd')}
97+
```
98+
99+
\pagebreak
100+
101+
```{r Awards parent, child=c('fr/sections/awards.Rmd')}
102+
```
103+
104+
```{r Teaching parent, child=c('fr/sections/teaching.Rmd')}
105+
```
106+
107+
```{r Preprints parent, child=c('fr/sections/preprints.Rmd'), eval = !short}
108+
```
109+
110+
```{r Invited talks parent, child=c('fr/sections/invited_talks.Rmd'), eval = !short}
111+
```
112+
113+
```{r Conference talks parent, child=c('fr/sections/conference_talks.Rmd'), eval = !short}
114+
```
115+
116+
```{r Conference posters parent, child=c('fr/sections/conference_posters.Rmd'), eval = !short}
117+
```
118+
119+
```{r Academic service parent, child=c('fr/sections/service.Rmd'), eval = !short}
120+
```
121+
122+
```{r Blogs parent, child=c('fr/sections/blogs.Rmd'), eval = !short}
123+
```
124+
125+
```{r Media coverage parent, child=c('fr/sections/media_coverage.Rmd'), eval = !short}
126+
```
127+
128+
```{r Other experience parent, child=c('fr/sections/other_experience.Rmd'), eval = !short}
129+
```
130+
131+
```{r Leadership parent, child=c('fr/sections/leadership.Rmd'), eval = !short}
132+
```
133+
134+
```{r Varia parent, child=c('fr/sections/varia.Rmd'), eval = FALSE}
135+
```
136+
137+
```{r credit parent, child=c('fr/sections/credit.Rmd'), eval = FALSE}
138+
```

cv_fr.pdf

433 KB
Binary file not shown.

files/make_data_impact.R

+9-2
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,16 @@ plot_citations_per_paper <- function(data_scholar) {
172172
# Define table_impact function
173173
table_impact <- function(data_scholar,
174174
author.name = author.name,
175-
scholar.profile = NULL) {
175+
scholar.profile = NULL,
176+
language = "EN") {
176177
# gs_profile <- paste0("https://scholar.google.com/citations?user=", scholar.profile)
177178
# gs_profile_URL <- link("Google Scholar Profile", gs_profile)
179+
if (language == "EN") {
180+
caption <- "Figure and table automatically updated through my"
181+
} else if (language == "FR") {
182+
caption <- "Figure et tableau mis à jour automatiquement via mon"
183+
}
184+
178185
gs_profile_URL <- "Google Scholar Profile"
179186
get_stats(data_scholar = data_scholar, author.name = author.name) |>
180187
knitr::kable(
@@ -195,6 +202,6 @@ table_impact <- function(data_scholar,
195202
position = "center", font_size = 8, latex_options = "hold_position") %>%
196203
kableExtra::add_footnote(
197204
paste(
198-
"Figure and table automatically updated through my", gs_profile_URL),
205+
caption, gs_profile_URL),
199206
notation = "symbol")
200207
}

0 commit comments

Comments
 (0)