blob: 977cb7d5dd0b245a8b2f5d30caf86a115121dc07 [file] [log] [blame]
#' Posterdown LaTeX format (using Memoir LaTeX document class)
#'
#' @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 = "posterdown_pdf", package = "posterdown")
#' }
#' @export
# This is borrowed from the thesisdown package github.com/ismayc/thesisdown
posterdown_latex <- function(..., keep_tex = TRUE) {
inherit_pdf_document(...,
keep_tex = keep_tex,
template = find_resource("posterdown_latex", "template.tex"),
citation_package = "biblatex")
}
#' @description Legacy function for the OG's of posterdown.
#' This will remain untouched from here on out (Feb 6 2019).
#' @rdname posterdown_latex
#' @export
posterdown_pdf <- function(..., keep_tex = TRUE) {
inherit_pdf_document(...,
keep_tex = keep_tex,
template = find_resource("posterdown_pdf", "template.tex"),
citation_package = "biblatex")
}