-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrun.R
More file actions
38 lines (32 loc) · 1.3 KB
/
run.R
File metadata and controls
38 lines (32 loc) · 1.3 KB
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
# author: Tinashe Tapera
# date: Novembe 2021
# this file renders both the resume and CV in PDF and HTML format
# render one page resume HTML
here::here("/root/project/")
# rmarkdown::render(input = here::here("one_page_resume", "one_page_resume_pagedown.Rmd"),
# output_file = "tinashemtapera_resume.html",
# output_options = list(
# css = c('css/custom_resume.css', 'css/styles_html.css', 'resume'),
# self_contained = TRUE
# ),
# params = list(
# doctype = "HTML"
# )
# )
# render one page resume PDF
# rmarkdown::render(input = here::here("one_page_resume", "one_page_resume_pagedown.Rmd"),
# output_file = "tinashemtapera_resume.html",
# output_options = list(
# css = c('css/custom_resume.css', 'css/styles_pdf.css', 'resume')
# ),
# params = list(
# doctype = "PDF"
# )
# )
# render long form cv
rmarkdown::render(input = here::here("long_form_cv", "long_form_cv_vitae.Rmd"),
output_file = "tinashemtapera_cv.pdf",
params = list(
googlescholarid = "9N6a5jsAAAAJ"
)
)