Nothing
#' Is latex installed?
#'
#' Checks for presence of pdflatex on path.
#'
#' @export
has_latex <- function() {
if (!is.null(fix <- getOption("PKGBUILD_TEST_FIXTURE_HAS_LATEX"))) {
return(fix)
}
nzchar(Sys.which("pdflatex"))
}
#' @export
#' @rdname has_latex
check_latex <- function() {
if (!has_latex()) {
stop("LaTeX not installed (pdflatex not found)", call. = FALSE)
}
TRUE
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.