Package 'posterdown'

Title: Generate PDF Conference Posters Using R Markdown
Description: Use 'rmarkdown' and 'pagedown' to generate HTML and PDF conference posters.
Authors: Brent Thorne [aut, cre] , Peter Higgins [ctb], Shea Connell [ctb], Luke Johnston [ctb]
Maintainer: Brent Thorne <[email protected]>
License: MIT + file LICENSE
Version: 1.0
Built: 2024-11-18 05:55:09 UTC
Source: https://github.com/brentthorne/posterdown

Help Index


posterdown package

Description

This package creates posters for conferences

poster_html

Creates an R Markdown template for a PDF poster document via HTML

poster_betterland

Creates an R Markdown template for a PDF poster document via HTML

poster_betterport

Creates an R Markdown template for a PDF poster document via HTML

Author(s)

Brent Thorne


Posterdown HTML format (using pagedown::poster_relaxed)

Description

The output format poster_betterland() mimics the style of the BetterPoster movement from twitter.

The output format poster_betterport() mimics the style of the BetterPoster movement from twitter.

Usage

posterdown_html(..., template = find_resource("posterdown_html",
  "template.html"), css = NULL)

posterdown_betterland(...,
  template = find_resource("posterdown_betterland", "template.html"),
  css = NULL)

posterdown_betterport(...,
  template = find_resource("posterdown_betterport", "template.html"),
  css = NULL)

Arguments

...

Additional arguments to rmarkdown::html_document

template

See html_paged().

css

See html_paged().

Value

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

Examples

file <- file.path(tempdir(),"foo.rmd")
rmarkdown::draft(file, template="posterdown_html", package="posterdown")