123456789101112131415161718192021222324252627 |
- #' MDPI journal format.
- #'
- #' Format for creating submissions to Multidisciplinary Digital Publishing
- #' Institute (MDPI) journals. Adapted from
- #' \href{http://www.mdpi.com/authors/latex}{http://www.mdpi.com/authors/latex}.
- #'
- #' @inheritParams rmarkdown::pdf_document
- #' @param ... Additional arguments to \code{rmarkdown::pdf_document}
- #'
- #' @return R Markdown output format to pass to
- #' \code{\link[rmarkdown:render]{render}}
- #'
- #' @examples
- #'
- #' \dontrun{
- #' library(rmarkdown)
- #' draft("MyArticle.Rmd", template = "mdpi_article", package = "rticles")
- #' }
- #'
- #' @export
- mdpi_article <- function(..., keep_tex = TRUE) {
- inherit_pdf_document(...,
- keep_tex = keep_tex,
- template = find_resource("mdpi_article", "template.tex"),
- citation_package = "natbib")
- }
|