Last data update: 2014.03.03

R: Use Bioconductor style to format R Markdown PDF output
pdf_documentR Documentation

Use Bioconductor style to format R Markdown PDF output

Description

This function sets the Bioconductor style in PDF documents rendered using R Markdown v2.

Usage

pdf_document(toc = TRUE, number_sections = TRUE, use.unsrturl = TRUE, includes, ...)

Arguments

toc

logical(1), TRUE to include a table of contents in the output.

number_sections

logical(1), TRUE to number section headings.

use.unsrturl

logical(1), indicating that the ‘unsrturl’ style will be used (ibliographystyle command not required).

includes

Named list of additional content to include within the document

...

Additional arguments, passed to pdf_document.

Value

R Markdown output format to pass to rmarkdown::render.

Author(s)

Andrzej Ole<c3><85><c2><9b> <andrzej.oles@embl.de>, 2014-2015

See Also

html_document, md_document

Examples

## Not run: 

# simple invocation
render("input.Rmd", BiocStyle::pdf_document())

# specify an option for latex engine
render("input.Rmd", BiocStyle::pdf_document(toc = FALSE))

## End(Not run)

Results