|
| 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 | +``` |
0 commit comments