rapport-CEI-MIA-2023/Rmd2Latex-fragment.R
2023-07-04 16:20:07 +02:00

11 lines
No EOL
375 B
R

#!/usr/bin/env Rscript
require("knitr")
create_latex <- function(f) {
knitr::knit(f, "/tmp/tmp-outputfile.md")
newname <- paste0(tools::file_path_sans_ext(f), ".tex")
mess <- paste("pandoc --extract-media=./img -f markdown -t latex -p -o", shQuote(newname), "/tmp/tmp-outputfile.md")
system(mess)
}
args <- commandArgs(trailingOnly = TRUE)
create_latex(args)