Reputation: 37
I tried to use Yihui Xie's pagedown resume template to produce a resume. The yaml
parameter self_contained was set to true and uncomment knit: pagedown::chrome_print
The full yaml is shown below :
The template generated the html version of the resume but not pdf. How can I produce the pdf version of the resume? I have updated all my R packages as suggested here. R version 4.3.1 (2023-06-16 ucrt) on Windows 10
Upvotes: 0
Views: 50
Reputation: 27
You need to change your output to pdf_document
output: pdf_document
Upvotes: -1