blob: 0fad74dd5f641d13f14b7b5d243788e1a8349fe7 [file] [log] [blame]
brentthorne275dbbe2019-02-05 13:31:30 -05001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/posterdown_html.R
3\name{posterdown_html}
4\alias{posterdown_html}
Marc Kupietzd2be7362023-06-14 07:17:27 +02005\alias{posterdown_ids}
brentthorne75828bf2019-04-07 23:37:15 -04006\alias{posterdown_betterland}
brentthorneedd17762019-04-09 12:35:49 -04007\alias{posterdown_betterport}
brentthorne8ee00762019-04-24 12:57:51 -04008\title{Posterdown HTML format (using pagedown::poster_relaxed)}
brentthorne275dbbe2019-02-05 13:31:30 -05009\usage{
Marc Kupietzd2be7362023-06-14 07:17:27 +020010posterdown_html(
11 ...,
12 template = find_resource("posterdown_html", "template.html"),
13 css = NULL
14)
brentthorne75828bf2019-04-07 23:37:15 -040015
Marc Kupietzd2be7362023-06-14 07:17:27 +020016posterdown_ids(
17 ...,
18 template = find_resource("posterdown_ids", "template.html"),
19 css = NULL
20)
21
22posterdown_betterland(
23 ...,
brentthorne75828bf2019-04-07 23:37:15 -040024 template = find_resource("posterdown_betterland", "template.html"),
Marc Kupietzd2be7362023-06-14 07:17:27 +020025 css = NULL
26)
brentthorneedd17762019-04-09 12:35:49 -040027
Marc Kupietzd2be7362023-06-14 07:17:27 +020028posterdown_betterport(
29 ...,
brentthorneedd17762019-04-09 12:35:49 -040030 template = find_resource("posterdown_betterport", "template.html"),
Marc Kupietzd2be7362023-06-14 07:17:27 +020031 css = NULL
32)
brentthorne275dbbe2019-02-05 13:31:30 -050033}
34\arguments{
35\item{...}{Additional arguments to \code{rmarkdown::html_document}}
brentthorne275dbbe2019-02-05 13:31:30 -050036}
37\value{
38R Markdown output format to pass to
brentthorne8ee00762019-04-24 12:57:51 -040039\code{\link[rmarkdown:render]{rmarkdown::render()}}
Marc Kupietzd2be7362023-06-14 07:17:27 +020040
41R Markdown output format to pass to
42\code{\link[rmarkdown:render]{rmarkdown::render()}}
brentthorne275dbbe2019-02-05 13:31:30 -050043}
44\description{
Marc Kupietzd2be7362023-06-14 07:17:27 +020045The output format \code{poster_ids()} mimics the IDS Mannheim
46corporate design posters.
47
brentthorne75828bf2019-04-07 23:37:15 -040048The output format \code{poster_betterland()} mimics the style of the
brentthorne8ee00762019-04-24 12:57:51 -040049BetterPoster movement from twitter.
brentthorneedd17762019-04-09 12:35:49 -040050
51The output format \code{poster_betterport()} mimics the style of the
brentthorne8ee00762019-04-24 12:57:51 -040052BetterPoster movement from twitter.
brentthorne275dbbe2019-02-05 13:31:30 -050053}
brentthorne164b9a82019-10-09 10:08:13 -040054\examples{
55\donttest{
56file <- file.path(tempdir(),"foo.rmd")
57rmarkdown::draft(file, template="posterdown_html", package="posterdown")
58}
59
Marc Kupietzd2be7362023-06-14 07:17:27 +020060\donttest{
61file <- file.path(tempdir(),"foo.rmd")
62rmarkdown::draft(file, template="posterdown_ids", package="posterdown")
63}
64
brentthorne164b9a82019-10-09 10:08:13 -040065}