-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
73 lines (65 loc) · 1.64 KB
/
index.qmd
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
---
title: "AM1: Vergleichende Empirische Populismusforschung"
subtitle: "Jasmin Sarah König"
execute:
freeze: false
editor_options:
chunk_output_type: console
---
Auf dieser Seite findet ihr den Kursplan für das Semester. Alle Lektüren, Fragenkataloge und die Slides der Präsentationen sind hier verlinkt.
Bitte nehmt in der Syllabus das **verpflichtende Blockseminar** am 30. Juni zur Kenntnis!
```{r}
#| echo: false
#| message: false
#| warning: false
library(googlesheets4)
library(gt)
library(tidyverse)
gs4_deauth()
d <- read_sheet("https://docs.google.com/spreadsheets/d/1Zq8Fhhlln_1RBXzqshvEdoFXcmt3LldwmTnxanbLEjI/edit?usp=sharing")
```
<div>
```{r}
#| echo: false
d |>
mutate(
Datum = as.Date(Datum)
) |>
select(-Notes, -Lecturenotes, -Woche) |>
gt() |>
fmt_date(Datum, date_style = 10) |>
sub_missing(columns = c(Uhrzeit, Thema, Lektüre, Raum, Fragen), missing_text = "") |>
cols_align(
align = "right",
columns = c(Datum, Raum, Uhrzeit)
) |>
cols_align(
align = "left",
columns = c(Thema, Lektüre, Fragen)
) |>
tab_options(table.font.size = 13) |>
tab_style(
style = cell_borders(
sides = "right",
color = "#D3D3D3",
style = "solid"
),
locations = cells_body(
columns = c(Raum, Datum, Uhrzeit, Thema, Lektüre)
)
) |>
fmt_markdown(
columns = c(Raum, Thema, Lektüre, Fragen)
) |>
cols_width(
Datum ~ px(55),
Uhrzeit ~ px(55),
Raum ~ px(80),
Thema ~ px(200),
Lektüre ~ px(250),
Fragen ~ px(160)) # only needed for a column that is nto supposed to have a title on website#|>
# cols_label(
# what = ""
# )
```
</div>