Compile and compare many slides
check_slides_many.RdWrapper for check_slides_single().
Usage
check_slides_many(
lectures_tbl = collect_lectures(),
pre_clean = FALSE,
compare_slides = FALSE,
create_comparison_pdf = FALSE,
parallel = TRUE,
thresh_psnr = 40,
dpi_check = 50,
dpi_out = 100,
pixel_tol = 20,
overwrite = FALSE
)Arguments
- lectures_tbl
Must contain
texcolumn. Defaults tocollect_lectures().- pre_clean
[FALSE]: Passed tocompile_slide().- compare_slides
[FALSE]IfTRUE, runcompare_slide()on the slide iff the compile check passed.- create_comparison_pdf, thresh_psnr, dpi_check, dpi_out, pixel_tol, overwrite
Passed to
compare_slide().- parallel
[TRUE]Whether to parallelize. Uses future.apply::future_lapply withfuture::plan("multisession").