Skip to content

Commit

Permalink
cv
Browse files Browse the repository at this point in the history
  • Loading branch information
rempsyc committed Feb 29, 2024
1 parent 07a3a9e commit 0c25a54
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cv.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ author.name <- "rém thériault"
```{r Publications parent, child=c('sections/publications.Rmd')}
```

```{r Grants parent, child=c('sections/grant.Rmd')}
```{r Awards parent, child=c('sections/awards.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')}
Expand Down
Binary file modified cv.pdf
Binary file not shown.
Binary file modified img/correlation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/correlation_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/easystats.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/easystats_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/effectsize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/lavaanExtra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/lavaanExtra_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/performance_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/rempsyc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/rempsyc_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/report.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/report_monthly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion sections/awards.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ output: html_document
```{r Awards}
data <- rbind(
tibble(
Name = "Postdoctoral Fellowship (SSHRC)",
URL = "",
Details = "",
Date = "2024-2026",
Amount = 90000,
Activity = NA,
Declined = FALSE),
tibble(
Name = "Best Student Paper Award (UQAM)",
URL = "",
Expand Down Expand Up @@ -294,17 +303,20 @@ data <- rbind(
total <- data$Amount
last_year <- max(unlist(strsplit(data$Date, "-")))
data <- data %>%
add_row(Name = "Total Amount Offered",
URL = "",
Date = "2011-2022",
Date = paste0("2011-", last_year),
Amount = sum(total),
Declined = FALSE) %>%
mutate(Name = link(paste0("\\hspace{0.5cm} ", Name, "\\dotfill"), URL, color = "333333"),
Amount = paste0("\\$", scales::label_comma(accuracy = 1)(Amount)),
Amount = ifelse(Declined == TRUE,
paste0("(", Amount, ")"),
Amount))
data[nrow(data),1] <- gsub("333333", "6FA3CE", data[nrow(data),1]) #Red: FF0000, but we use same colour as rest
brief_entries(data, Name, Date, Amount, .protect = FALSE)
Expand Down

0 comments on commit 0c25a54

Please sign in to comment.