Skip to contents

These functions render different versions of the original {posterdown} templates with a little IHEID twist to them. All exports are in HTML format. You can save them by printing them to PDF via a modern browser.

The output format poster_betterland() mimics the style of the BetterPoster movement from twitter with an IHEID twist.

The output format poster_betterport() mimics the style of the BetterPoster movement from twitter with an IHEID twist.

Usage

iheiddown_poster(
  ...,
  template = system.file("rmarkdown", "templates", "iheiddown_poster", "resources",
    "template.html", package = "iheiddown"),
  css = NULL
)

iheiddown_betterland(
  ...,
  template = system.file("rmarkdown", "templates", "iheiddown_betterland", "resources",
    "template.html", package = "iheiddown"),
  css = NULL
)

iheiddown_betterport(
  ...,
  template = system.file("rmarkdown", "templates", "iheiddown_betterport", "resources",
    "template.html", package = "iheiddown"),
  css = NULL
)

Source

{Posterdown}

Arguments

...

Additional arguments to rmarkdown::html_document

template

Additional argument passed to pagedown::poster_relaxed. IHEID poster templates by default.

css

Additional argument passed to pagedown::poster_relaxed. NULL by default.

Value

R Markdown output format to pass to rmarkdown::render()

Examples

if (FALSE) {
file <- file.path(tempdir(),"foo.rmd")
rmarkdown::draft(file, template="iheiddown_poster", package="iheiddown")
}