Re: [R-pkg-devel] Warning Message on Vignettes

2019-07-03 Thread Alexandre Courtiol
Hi, how to you build your package? I do: mkdir -p inst/doc mkdir vignettes cp sources_vignettes/*.pdf* vignettes ## for linux add -u after cp cp sources_vignettes/*.Rnw inst/doc ## for linux add -u after cp (cd inst/doc/; for f in *.Rnw; do mv "$$f" "$${f%.Rnw}_source.txt"; done;) Rscript -e "tool

[R-pkg-devel] VignetteBuilder field

2019-07-03 Thread Michael Gruenstaeudl
Assume an R package `myPackage` that contains the folder `vignettes`, in which the TEX-file `PACViR_Vignette.tex` and two image files (`image1.pdf` and `image2.pdf`) are located. The TEX-file compiles nicely without the need to use Sweave or knitr. Upon testing the package for submission to CR

Re: [R-pkg-devel] VignetteBuilder field

2019-07-03 Thread Dirk Eddelbuettel
On 3 July 2019 at 19:43, Michael Gruenstaeudl wrote: | Assume an R package `myPackage` that contains the folder `vignettes`, in | which the TEX-file `PACViR_Vignette.tex` and two image files | (`image1.pdf` and `image2.pdf`) are located. The TEX-file compiles | nicely without the need to use S