HOW TO: Package vignettes in plain LaTeX

[This article was first published on jottR, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Ever wanted to include a plain-LaTeX vignette in your package and have it compiled into a PDF? The R.rsp package provides a four-line solution for this.

But, first, what's R.rsp? R.rsp is an R package that implements a compiler for the RSP markup language. RSP can be used to embed dynamic R code in any text-based source document to be compiled into a final document, e.g. RSP-embedded LaTeX into PDF, RSP-embedded Markdown into HTML, RSP-embedded HTML into HTML and so on. The package provides a set of vignette engines making it straightforward to use RSP in vignettes and there are also other vignette engines to, for instance, include static PDF vignettes. Starting with R.rsp v0.20.0 (on CRAN), a vignette engine for including plain LaTeX-based vignettes is also available. The R.rsp package installs out-of-the-box on all common operating systems, including Linux, OS X and Windows. Its source code is available on GitHub.

Photo of a Hansen writing ball
A Hansen Writing Ball – the first commercially produced typewriter invented by Rasmus Malling-Hansen in 1865.

Steps to include a LaTeX vignettes in your package

  1. Place your LaTeX file in the vignettes/ directory of your package. If it needs other files such as image files, place those under this directory too.

  2. Rename the file to have filename extension *.ltx, e.g. vignettes/UsingYadayada.ltx. (*)

  3. Add the following meta directives at the top of the LaTeX file:

    %VignetteIndexEntry{Using Yadayada}
    %VignetteEngine{R.rsp::tex}

  4. Add the following to your DESCRIPTION file:

    Suggests: R.rsp
    VignetteBuilder: R.rsp

That's all!

When you run R CMD build, the R.rsp::tex vignette engine will compile your LaTeX vignette into a PDF and make it part of your package's *.tar.gz file. As for any vignette engine, the PDF will be placed in the inst/doc/ directory of the *.tar.gz file, ready to be installed together with your package. Users installing your package will not have to install R.rsp.

If this is your first package vignette ever, you should know that you are now only baby steps away from writing your first “dynamic” vignette using Sweave, knitr or RSP. For RSP-embedded LaTeX vignettes, change the engine to R.rsp::rsp, rename the file to *.ltx.rsp (or *.tex.rsp) and start embedding R code in the LaTeX file, e.g. 'The p-value is <%= signif(p, 2) %>.

Footnote: (*) If one uses filename extension *.tex, then R CMD check will give a false NOTE about the file “should probably not be installed”. Using extension *.ltx, which is an official LaTeX extension, avoids this issue.

Why not use Sweave?

It has always been possible to “hijack” the Sweave vignette engine to achieve the same thing by renaming the filename extension to *.Rnw and include the proper VignetteIndexEntry markup. This would trick R to compile it as a Sweave vignette (without Sweave markup) resulting in a PDF, which in practice would work as a plain LaTeX-to-PDF compiler. The R.rsp::tex engine achieves the same without the “hack” and without the Sweave machinery.

Static PDFs?

If you want to use a “static” pre-generated PDF as a package vignette that can also be achieved in a few step using the R.rsp::asis vignette engine. There is an R.rsp vignette explaining how to do this, but please consider alternatives that compile from source before doing this. Also, vignettes without full source may not be accepted by CRAN. A LaTeX vignette does not have this problem.

Links

To leave a comment for the author, please follow the link and comment on their blog: jottR.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)