Checking the R package

I recently submitted an update to my package in CRAN and was informed that the line in the .Rd file is too wide. Using the latest version of Rpatched, I ran the R CMD check, everything checked in order. I ran -as-cran on the tarball and everything is fine. When I examined the .PDF file generated after the R CMD build, I see that the line in the .PDF help file is expanded out of the box.

My question is, where and how can I check for errors in generating the .PDF file? I've checked through Writing R Extensions etc. and I can't seem to find a specific statement.

+3


source to share


1 answer


Build and test your package R CMD build mypkg && & & R CMD check mypkg_1.2.3.tar.gz. Then look in the mypkg.Rcheck / Rdlatex.log file for warnings (e.g. Overful \ hbox) when processing the Rd file into latex.



+3


source







All Articles