Package 'ovpaged'

Title: Openvolley Pagedown Templates
Description: Pagedown templates for the Openvolley project.
Authors: Ben Raymond [aut, cre], Adrien Ickowicz [aut], openvolley.org [org]
Maintainer: Ben Raymond <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2024-10-23 02:58:24 UTC
Source: https://github.com/openvolley/ovpaged

Help Index


ovpaged

Description

Pagedown templates for the Openvolley project.


Posterdown HTML format (using pagedown::poster_relaxed)

Description

Posterdown HTML format (using pagedown::poster_relaxed)

Usage

poster(
  ...,
  template = pkg_resource("html", "template_poster.html"),
  css = NULL
)

Arguments

...

Additional arguments to pagedown::poster_relaxed()

template

string: as for pagedown::html_paged()

css

string: additional css

Value

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

Examples

## Not run: 
 myfile <- tempfile(fileext = ".Rmd")
 rmarkdown::draft(myfile, template = "poster", package = "ovpaged")

## End(Not run)

Simple paged report template

Description

Simple paged report template

Usage

simple(
  css = NULL,
  orientation = "portrait",
  autolink_bare_uris = FALSE,
  striped = TRUE,
  auto_table_breaks = TRUE,
  hide_page_numbers = FALSE,
  ...
)

plain(
  css = NULL,
  autolink_bare_uris = FALSE,
  striped = TRUE,
  auto_table_breaks = TRUE,
  ...
)

Arguments

css

string: additional css

orientation

string: "portrait" or "landscape" (experimental)

autolink_bare_uris

logical: if TRUE, convert absolute URIs into links, even when not surrounded by pointy braces ⁠<...>⁠. It is set to FALSE by default here so that the header-image parameter in the document YAML is not converted. This is equivalent to specifying md_extensions: -autolink_bare_uris in the document YAML directly

striped

logical: if TRUE, include css that makes table rows striped

auto_table_breaks

logical: if TRUE, automatically break tables across pages

hide_page_numbers

logical: if TRUE, hide page numbers

...

: passed to pagedown::html_paged()

Value

A pagedown template