-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkey-dates.qmd
More file actions
132 lines (106 loc) · 3 KB
/
Copy pathkey-dates.qmd
File metadata and controls
132 lines (106 loc) · 3 KB
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
---
title: "Key Dates"
---
```{r, echo=F, results=F, message=F, warning=F}
Sys.setlocale("LC_ALL", "English")
library(tibble)
library(dplyr)
library(tidyr)
library(readxl)
library(knitr)
library(kableExtra)
library(stringr)
library(lubridate)
key_dates <- list(
"Pre-conference Courses" =
tribble(
~ Item, ~ Date,
"Call", ymd("2024-10-04"),
"Deadline", ymd("2025-01-05"),
"Notifications sent", ymd("2025-02-11")
),
"Abstract Submissions" =
tribble(
~ Item, ~ Date,
"Call", ymd("2024-11-27"),
"Submission opens", ymd("2024-12-09"),
"Deadline", ymd("2025-02-14"),
"Notifications sent", ymd("2025-03-21")
),
"Award Applications" =
tribble(
~ Item, ~ Date,
"Deadline", ymd("2025-02-14"),
"Notifications sent", ymd("2025-04-15")
),
"Registration" =
tribble(
~ Item1, ~ Item2, ~ Date,
"Early Bird", "Opens", ymd("2025-03-21"),
"Early Bird", "Closes", ymd("2025-05-21"),
"Regular", "Opens", ymd("2025-05-22"),
"Regular", "Closes", ymd("2025-06-30")
),
"Final File Upload" =
tribble(
~ Item1, ~ Date,
"Deadline", ymd("2025-08-17"),
)
)
tidy_kable <- function(data, type) {
if (class(data$Date[0]) == "Date") {
data <- mutate(data, Date = format(Date, "%A, %d %B %Y"))
}
tbl <- data |>
kable(col.names = c("", "Date"), align = "rl") |>
kable_styling(
bootstrap_options = c("striped", "hover", "condensed"),
full_width = F
) |>
column_spec(column = 1, width = "160px")
# column_spec(column = 2, width = "70%")
return(tbl)
}
```
<!-- ## Invited Sessions -->
<!-- ```{r echo=F, message=F, warning=F} -->
<!-- key_dates[["Invited Sessions"]] |> -->
<!-- tidy_kable() -->
<!-- ``` -->
## Pre-conference Courses
```{r echo=F, message=F, warning=F}
tbl_data <-
key_dates[["Pre-conference Courses"]] |>
mutate(Date = format(Date, "%A, %d %B %Y"))
tbl_data[3,2] <- paste0(tbl_data[3,2],"*")
tbl_data |>
kable(col.names = c("", "Date"), align = "rl") |>
kable_styling(
bootstrap_options = c("striped", "hover", "condensed"),
full_width = F
) |>
column_spec(column = 1, width = "160px")
```
[\* Original date: Friday, 07 February 2025]{style="font-size:80%"}
## Abstract Submissions
```{r echo=F, message=F, warning=F}
key_dates[["Abstract Submissions"]] |> tidy_kable()
```
[Note that the abstract submission deadline is *final* and will *not* be extended!]{style="color:red"}
## Awards Applications
```{r echo=F, message=F, warning=F}
key_dates[["Award Applications"]] |> tidy_kable()
```
[Original date for notifications: Friday, 11 April 2025]{style="font-size:80%"}
## Registration
```{r, echo=F, message=F, warning=F}
registration_dates <- key_dates[["Registration"]]
registration_dates |>
select(Item2, Date) |>
tidy_kable() |>
pack_rows(index = table(registration_dates$Item1))
```
## Final File Upload
```{r echo=F, message=F, warning=F}
key_dates[["Final File Upload"]] |> tidy_kable()
```