-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV1.Rmd
123 lines (97 loc) · 2.1 KB
/
CV1.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
---
name: Santosh
surname: Bhosale
position: "Postdoctoral Researcher"
address: "University of Southern Denmark, Odense, Denmark"
profilepic: "./img/SDB.png"
email: "santoshb@bmb.sdu.dk"
linkedin: santoshdbhosale
github: santoshdbhosale
date: "`r format(Sys.time(), '%B %Y')`"
headcolor: 990000
aboutme: "I do mass spectrometry based proteomics research, including discovery and validation of serum biomarkers in clinical samples from type 1 diabetes and atherosclerosis studies. Collaborations with clinicians, mass spectrometry experts and bioinformaticians."
docname: CV
output: vitae::awesomecv
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE)
library(vitae)
library(tibble)
library(magrittr)
library(here)
library(readr)
source(file = here("r","data_withPatent.r"))
```
# Research Proficiency
```{r SKILLS}
skills %>%
detailed_entries(
with = area,
what = skills
)
```
# Employment
```{r EMPLOYMENT}
work %>%
detailed_entries(
with = title,
what = unit,
why = detail,
when = glue::glue("{startMonth} {startYear} --> {endMonth} {endYear}",.na = ""),
where = where
)
```
\pagebreak
# Education
```{r EDUCATION}
edu %>%
detailed_entries(
with = inst,
what = degree,
why = detail,
when = glue::glue("{startYear} --> {endYear}",.na = ""),
where = where
)
```
# Awards
```{r AWARDS}
awards %>%
detailed_entries(
with = area,
what = accomplishment,
why = detail,
when = year,
where = where
)
```
# Publications
```{r PUBLICATIONS}
pubs %>%
detailed_entries(
where = Journal,
with = Authors,
what = Title,
when = Year
)
```
# Patent Applications
```{r PATENT}
patents %>%
detailed_entries(
where = where,
with = Authors,
what = Title,
why = detail
)
```
# References
```{r REFERENCES}
ref %>%
detailed_entries(
where = Contact,
with = Name,
what = Title
)
```