Skip to contents

Clean output for a single .tex file

Usage

clean_slide(slide_file, verbose = FALSE)

Arguments

slide_file

character(1): A single slide .tex file (see examples).

verbose

[TRUE]: Print additional output to the console.

Value

Invisibly: A list with entries

  • passed: TRUE indicates a successful compilation, FALSE a failure.

  • log: Absolute path to the log file in case of a non-zero exit status.

Examples

if (FALSE) { # \dontrun{
# Create the PDF
compile_slide("slides-cart-computationalaspects.tex")

# Remove the PDF and other output
clean_slide("slides-cart-computationalaspects.tex")
} # }