-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv-stachelek-short.Rmd
150 lines (111 loc) · 4.23 KB
/
cv-stachelek-short.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
---
title: "Kevin Stachelek's CV"
author: Kevin Stachelek
date: "`r Sys.Date()`"
params:
pdf_mode:
value: false
output:
pagedown::html_resume:
css: ['boring_cv.css']
self_contained: true
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(datadrivencv)
library(magrittr) # For the pipe
source("cv_printing_functions.r")
# Read in all data and initialize a CV printer object
CV <- create_CV_object(
data_location = "https://docs.google.com/spreadsheets/d/1IY5sQS_JlNAYvsmCaEVTNHl6Zl7dOuhY4ulfnAeBBJ0/edit?usp=sharing",
pdf_mode = params$pdf_mode
)
```
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta charset="utf-8">
<script src="https://kit.fontawesome.com/bee4f5cfa6.js" crossorigin="anonymous"></script>
<!-- <link rel="preconnect" href="https://fonts.googleapis.com"> -->
<!-- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> -->
<!-- <link href="https://fonts.googleapis.com/css2?family=Tinos&display=swap" rel="stylesheet"> -->
```{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>")
}
```
Main
================================================================================
Kevin Stachelek {#title}
--------------------------------------------------------------------------------
<hr>
<!-- <div style="font-size:14px;padding:0px;margin:0px;"></div> -->
<div id="intro">
`r knitr::asis_output("\U00B7")` Ph.D Candidate, University of Southern California<br>
<!-- <span style="font-size:0.9rem;">Keck School of Medicine, University of Southern California</span> -->
`r fontawesome::fa("envelope")` stachele@usc.edu `r knitr::asis_output("\U00B7")`
`r fontawesome::fa("globe")` [stchlk.rbind.io](http://stchlk.rbind.io) `r knitr::asis_output("\U00B7")`
`r fontawesome::fa("orcid")` [orcidID](https://orcid.org/0000-0003-2085-695X) `r knitr::asis_output("\U00B7")`
`r fontawesome::fa("github")` [Github](https://github.com/whtns) `r knitr::asis_output("\U00B7")`
`r fontawesome::fa("twitter")` [Twitter](https://twitter.com/stchlk)
<em style="font-size:0.8rem;">Last updated on `r Sys.Date()`</em>
</div>
<hr>
<!-- <div style="font-size:0.9rem;"> -->
<!-- ```{r} -->
<!-- # Note the special double pipe so we modify the CV object in place -->
<!-- CV %<>% print_text_block("intro") -->
<!-- ``` -->
<!-- </div> -->
Education {data-icon=graduation-cap }
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('education')
```
<!-- Clinical Experience {data-icon=hospital data-concise=true} -->
<!-- -------------------------------------------------------------------------------- -->
<!-- ```{r} -->
<!-- CV %<>% print_section('clinical') -->
<!-- ``` -->
Professional Experience {data-icon=briefcase data-concise=true}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('positions', glue_template = "positions")
```
Grant Support {data-icon=pen-alt}
--------------------------------------------------------------------------------
```{r class.source="pubs"}
CV %<>% print_section('grants', glue_template = "grant")
```
Scholarships and Awards {data-icon=award}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('honors', glue_template = "other")
```
Publications {data-icon=file-alt}
--------------------------------------------------------------------------------
```{r class.source="pubs"}
CV %<>% print_section('publications', glue_template = "citation")
```
Refereed Presentations {data-icon=chalkboard-teacher}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('presentations', glue_template = "citation")
```
Software & Technology {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('software', glue_template = "other")
```
Teaching {data-icon=university}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('teaching', glue_template = "other")
```