-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.rmd
executable file
·164 lines (109 loc) · 2.99 KB
/
cv.rmd
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
title: "Jodie Lord's CV"
author: Jodie Lord
date: "`r Sys.Date()`"
params:
pdf_mode:
value: true
output:
pagedown::html_resume:
css: ['dd_cv.css', 'resume']
self_contained: true
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(magrittr)
source("cv_printing_functions.r")
# Read in all data and initialize a CV printer object
CV <- create_CV_object(
data_location = "data/",
pdf_mode = params$pdf_mode
)
```
```{r}
# When in pdf export mode the little dots are unaligned, so fix that with some conditional CSS.
if(params$pdf_mode) {
cat("
<style>
:root{
--decorator-outer-offset-left: -6.5px;
}
</style>")
}
```
Aside
================================================================================
Contact {#contact}
--------------------------------------------------------------------------------
```{r}
CV %>% print_contact_info()
```
Key skills {#skills}
--------------------------------------------------------------------------------
```{r}
##NEED TO ADD TO PRINTING FUNCTIONS .R
CV %>% print_key_bars()
```
Coding languages {#programming}
--------------------------------------------------------------------------------
```{r}
CV %>% print_skill_bars()
```
Hobbies
--------------------------------------------------------------------------------
```{r}
CV %<>% print_text_block('hobbies')
```
Main
================================================================================
Jodie Lord {#title}
--------------------------------------------------------------------------------
```{r}
# Note the special double pipe so we modify the CV object in place
CV %<>% print_text_block("intro")
```
Selected Industry Experience {data-icon=suitcase}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('industry_positions')
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('education')
```
<br>
<br>
<br>
Academic and Research Experience {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('research_positions')
```
<!-- These breaks just force a new page so section doesnt get cut off -->
<br>
<br>
<br>
Selected Publications {data-icon=book}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('academic_articles')
```
<br>
<br>
A full list of academic publications are available on my [Google Scholar](https://scholar.google.co.uk/citations?hl=en&user=NeZqCwkAAAAJ) profile
<br>
<br>
::: aside
{#disclaimer}
--------------------------------------------------------------------------------
CV made with the R package [**pagedown**](https://github.com/rstudio/pagedown).
Code available at [github.com/jodielord/cv](https://github.com/jodielord/cv).
Last updated on `r Sys.Date()`.
:::
```{r}
#CV %<>% print_links()
```