-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV_short.Rmd
147 lines (117 loc) · 3.39 KB
/
CV_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
---
title: Brian M. Schilder - CV
author: autoCV
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
# keep_md: yes
# set it to true for a self-contained HTML page but it'll take longer to render
css:
# OVERIDE CERTAIN FUNCTIONS OF CSS
- css/override.css
# - !expr autoCV::get_css()
# DEFAULT FILE
- resume
# uncomment this line to produce HTML and PDF in RStudio:
knit: pagedown::chrome_print
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
htmltools::tagList(fontawesome::fa_html_dependency())
library(autoCV)
```
<!-- Only show sidebar on first page: https://github.com/rstudio/pagedown/issues/147 -->
```{css, echo=FALSE}
.pagedjs_page:not(:first-of-type) {
--sidebar-width: 1rem;
--main-width: calc(var(--content-width) - var(--sidebar-width));
--decorator-horizontal-margin: 0.2in;
}
```
<!-- Custom Info -->
```{r}
####Set your working directory ####
# wd <- autoCV::get_data() ## <-- Change this path to where your data is
# knitr::opts_knit$set(root.dir = wd)
####Set title elements ####
name <- "Brian M Schilder"
title <- ", PhD"
tagline <- "### Passionately pursuing transdisciplinary research to advance human health and knowledge."
extra <- list("<img src='img/CSHL.png' height='50px' style='padding-bottom: 3px'><br>",
"Postdoctoral Research Scientist<br><br>",
"*Below are selected subsets of the [full CV. -](https://bschilder.github.io/CV/CV.pdf)*")
logo <- get_logo(
img = here::here("network/visnetwork.png"),
link = "https://bschilder.github.io/CV/network/visnetwork.html",
style = "border-radius:30%; margin-left:-15px; opacity:.7",
width = "60px"
)
```
# Aside
```{r, warning=FALSE, message=FALSE, eval=FALSE}
visnet <- build_network(show_plot = FALSE,
save_path = here::here("network","visnetwork.html"))
```
## Contact {#contact}
```{r}
parse_profile(types = c("email","website","phone"))
```
## Summary {#summary}
<h4>
```{r}
build_summary()
```
</h4>
## Table of Contents {#toc}
```{r}
build_toc(items=c("education","skills","publications","preprints","experience","grants"))
```
<hr>
```{r}
build_footer()
```
# Main
```{r}
build_title(name = paste0(name,title),
tagline = tagline,
extra = extra,
logo = logo,
logo_position = "left")
```
## Education {data-icon=`r icon_dict("education")` data-concise="true" #education}
```{r}
parse_education( include=c("logo",
"degree",
# "program",
"focus",
"thesis",
"institution"))
```
## Core Skills {data-icon=`r icon_dict("skills")` #skills}
```{r}
parse_skills(types = "core")
```
## Publications {data-icon=`r icon_dict("publications")` #publications}
```{r}
parse_publications(types = "publication",
name = name)
```
## Preprints {data-icon=`r icon_dict("preprints")` #preprints}
```{r}
parse_publications(types = "preprint",
name = name)
```
## Research Experience {data-icon=`r icon_dict("experience")` #experience}
```{r}
parse_experience(types = "research",
select = TRUE,
concise = FALSE)
```
## Grants {data-icon=`r icon_dict("grants")` #grants}
```{r}
parse_grants(types = "NA",
add_totals = TRUE)
```