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
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
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