blob: d56e6a1bc4531b177854e0bc5727d6af218b7b70 [file] [log] [blame]
brentthorne70f87402019-02-06 17:05:11 -05001#' Posterdown LaTeX format (using Memoir LaTeX document class)
2#'
3#' @inheritParams rmarkdown::pdf_document
Luke W Johnston79329cc2019-04-24 17:14:04 +02004#' @param ... Additional arguments to `rmarkdown::pdf_document`
brentthorne70f87402019-02-06 17:05:11 -05005#'
6#' @return R Markdown output format to pass to
brentthorne8ee00762019-04-24 12:57:51 -04007#' [rmarkdown::render()]
brentthorne70f87402019-02-06 17:05:11 -05008#'
9#' @examples
10#'
11#' \dontrun{
12#' library(rmarkdown)
13#' draft("MyArticle.Rmd", template = "posterdown_pdf", package = "posterdown")
14#' }
15#' @export
16# This is borrowed from the thesisdown package github.com/ismayc/thesisdown
17posterdown_latex <- function(..., keep_tex = TRUE) {
18 inherit_pdf_document(...,
19 keep_tex = keep_tex,
20 template = find_resource("posterdown_latex", "template.tex"),
21 citation_package = "biblatex")
22}
23
24#' @description Legacy function for the OG's of posterdown.
25#' This will remain untouched from here on out (Feb 6 2019).
26#' @rdname posterdown_latex
27#' @export
28posterdown_pdf <- function(..., keep_tex = TRUE) {
29 inherit_pdf_document(...,
30 keep_tex = keep_tex,
31 template = find_resource("posterdown_pdf", "template.tex"),
32 citation_package = "biblatex")
33}