12

I have written a tutorial in vignette form for one of my packages.

It works fine, but it only creates the html version of the vignette. Is there a way I can create both the html and the pdf version of my vignettes?

I have tried to append rmarkdown::pdf in the output field of my .Rmd file, but it didn't work.

lucacerone
  • 9,859
  • 13
  • 52
  • 80

1 Answers1

10

This is what I added in the header of my vignette.

output:
  knitr:::html_vignette:
    toc: true
    css: custom.css
    fig_caption: yes
  pdf_document:
    highlight: null
    number_sections: yes

and the I used the command from hrbrmstr above which produces a PDF file.

rmarkdown::render("vignettes/itkr.Rmd", "all")
Community
  • 1
  • 1
bytesinflight
  • 1,624
  • 2
  • 17
  • 28