added conferences

This commit is contained in:
Andreas Gammelgaard Damsbo 2024-03-14 11:43:29 +01:00
parent c3267e5c54
commit 5c07935a93
No known key found for this signature in database
2 changed files with 17 additions and 2 deletions

19
cv.Rmd
View File

@ -75,6 +75,23 @@ tribble(
# ?tibble::tribble
```
# Conference attendance
```{r Conferences}
library(tibble)
tribble(
~ what, ~ when, ~ who, ~ where,
"ESOC 2017", "2017", "European Stroke Organisation", "Prague, Czechia",
"ESOC 2021", "2021", "European Stroke Organisation", "Online",
"ESOC 2023", "2023", "European Stroke Organisation", "Munich, Germany",
"WSC 2023", "2023", "World Stroke Organisation", "Toronto, Canada"
) %>% arrange(desc(when)) |>
detailed_entries(who, when, what, where)
# ?tibble::tribble
```
\newpage
# Publications
## Main author
@ -98,8 +115,6 @@ articles |> filter(main_author) |> arrange(desc(issued))
# bibliography_entries(here::here("bib-files/agd-main.bib"))|> arrange(desc(issued))
```
\newpage
## Co-author
```{r Coauthor}

Binary file not shown.