-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcv.Rmd
136 lines (101 loc) · 3.96 KB
/
cv.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
---
name: Rémi
surname: Thériault
profilepic: "img/profile.png"
position: "PhD Student"
qualifications: "MSc"
address: "Université du Québec à Montréal, Montréal, Québec, Canada"
phone: (438) 995-7648
www: remi-theriault.com
email: "[email protected]"
twitter: rempsyc
github: rempsyc
# linkedin: rempsyc
aboutme: |
\RaggedRight My training and interests lie at the intersection of social psychology, neuroscience, and positive psychology. My main research area deals with prosociality: empathy, perspective-taking, altruism, loving-kindness, and self-control. In my postdoctoral research, I attempt to reduce political polarization by appealing to shared social identities. I am also passionate about open science, reproducible science, metascience, and data science using R (this CV was made in R too).
date: "`r format(Sys.time(), '%B %Y')`"
headcolor: "6FA3CE" # my shirt on the profil pic is 839AC4, but we take a bit lighter for better look
urlcolor: blue
linkcolor: blue
output:
vitae::awesomecv:
page_total: true
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
#######################
#### SHORT VERSION ####
#######################
# Whether to print a shortened version of the CV
short <- FALSE
########################
#### PACKAGE SETUP #####
########################
# Required packages
library(vitae)
library(dplyr)
# For Google scholar data/visualization
library(scholar)
library(ggplot2)
library(forcats)
library(patchwork)
library(see)
library(rsvg)
library(kableExtra)
# To format links throughout the CV
source("files/format_links.R")
########################
#### GOOGLE SCHOLAR ####
########################
# Specify your Google scholar profile
scholar.profile <- "NrfwEncAAAAJ" # Get it from your Google Scholar profile URL
# Specify your Google scholar short author name
author.name <- "rém thériault"
# Note: correct name may vary (e.g., if you inconsistently used middle name initials)
# Dominique Makowski's was simply "d makowski", so the pattern is unclear
# But usually it seems 1-3 letters from first name plus full last name
# When in doubt, the correct author name can be obtained through:
# source("files/get_scholar_name.R") # (after defining 'scholar.profile' above)
# Name inconsistencies should be corrected manually in file 'files/make_data_impact.R' (lines 14-16).
########################
##### INSTRUCTIONS #####
########################
# Change the order of sections below as desired.
# Edit the individual files ("childs") to edit the content as desired.
# Add `eval = !short` to code chunks to make them optional for the short version
# See all instructions and tips here: https://github.com/rempsyc/cv
```
```{r Education parent, child=c('sections/education.Rmd')}
```
```{r Publications parent, child=c('sections/publications.Rmd')}
```
```{r Awards parent, child=c('sections/awards.Rmd')}
```
```{r Grants parent, child=c('sections/grant.Rmd')}
```
```{r Teaching parent, child=c('sections/teaching.Rmd')}
```
```{r Preprints parent, child=c('sections/preprints.Rmd'), eval = !short}
```
```{r Invited talks parent, child=c('sections/invited_talks.Rmd'), eval = !short}
```
```{r Conference talks parent, child=c('sections/conference_talks.Rmd'), eval = !short}
```
```{r Conference posters parent, child=c('sections/conference_posters.Rmd'), eval = !short}
```
```{r Academic service parent, child=c('sections/service.Rmd'), eval = !short}
```
```{r Software parent, child=c('sections/software.Rmd')}
```
```{r Blogs parent, child=c('sections/blogs.Rmd'), eval = !short}
```
```{r Media coverage parent, child=c('sections/media_coverage.Rmd'), eval = !short}
```
```{r Other experience parent, child=c('sections/other_experience.Rmd'), eval = !short}
```
```{r Leadership parent, child=c('sections/leadership.Rmd'), eval = !short}
```
```{r Varia parent, child=c('sections/varia.Rmd'), eval = TRUE}
```
```{r credit parent, child=c('sections/credit.Rmd'), eval = !short}
```