You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps also replace this code from latexTablePDF() with an option:
# CHECK FOR PDFLATEX
# This is a time-consuming operation. So if we find pdflatex the first time,
# we create the ".pdflatex_found" variable in the user's environment. In
# future runs of latexTablePDF(), the check aborts if ".pdflatex_found"
# exists. [2020 01 01]
if (writePDF && !exists(".pdflatex_found")) {
if (!nzchar(Sys.which("pdflatex"))) {
stop("pdflatex doesn't seem to be on your path. A PDF file can't be created.")
}
else {
assign(".pdflatex_found", TRUE, envir = parent.frame())
}
}
The text was updated successfully, but these errors were encountered:
https://stackoverflow.com/questions/65466324/why-are-sapply-and-options-undesirable
See zzz.R in my package.
Perhaps also replace this code from
latexTablePDF()
with an option:The text was updated successfully, but these errors were encountered: