-
Notifications
You must be signed in to change notification settings - Fork 5
/
template-typstcv.qmd
77 lines (64 loc) · 1.41 KB
/
template-typstcv.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
74
75
76
77
---
title: "Albert Einstein's CV"
author:
firstname: Albert
lastname: Einstein
address: "Rämistrasse 101, CH-8092 Zürich, Switzerland, Zürich"
position: Research Physicist・Professor
contacts:
- icon: fa envelope
text: [email protected]
url: "mailto:[email protected]"
- icon: assets/icon/bi-house-fill.svg
text: example.com
url: https://example.com
- icon: fa brands orcid
text: 0000-0000-0000-0000
url: https://orcid.org/0000-0000-0000-0000
- icon: fa brands github
text: GitHub
url: https://github.com/example
- icon: fa brands linkedin
text: LinkedIn
url: https://linkedin.com/in/example
- icon: fa brands x-twitter
text: twitter
url: https://twitter.com/example
format: awesomecv-typst
execute:
echo: false
warning: false
message: false
---
```{r}
# install.packages("typstcv", repos = "https://kazuyanagimoto.r-universe.dev")
library(typstcv)
```
## Education
```{r}
#| output: asis
resume_entry(educ)
```
## Publications
```{r}
#| output: asis
resume_entry(pub)
```
## Work Experience
```{r}
#| output: asis
work |>
format_date(end = "end", date_format = "%Y", sort_by = "start") |>
resume_entry()
```
## Awards
```{r}
#| output: asis
resume_entry(award, details = c("detail1", "detail2"))
#resume_entry(award, details = grep("^detail", names(award)))
```
## Skills
```{r}
#| output: asis
resume_entry(skill)
```