blob: 770f4842d9445bf8d8121f15fe72e18cad907aec [file] [log] [blame]
brentthornef4d53662019-06-27 17:00:54 -04001---
2title: "Generating reproducible conference posters using posterdown and rmarkdown"
3author: "Brent Thorne"
4date: "`r Sys.Date()`"
5output: rmarkdown::html_vignette
6vignette: >
7 %\VignetteIndexEntry{posterdown}
8 %\VignetteEngine{knitr::rmarkdown}
9 %\VignetteEncoding{UTF-8}
10---
11
12```{r setup, include = FALSE}
13knitr::opts_chunk$set(
14 collapse = TRUE,
15 comment = "#>"
16)
17```
18
19This document is intended to be an introduction to using the {posterdown} package in order to generate a reproducible conference poster. The intent of this package is to allow for simple, clean, and production ready templates that can be customized as needed.
20
21## Getting Started
22
23To generate a blank poster document add the following to your `.Rmd` file:
24
25```markdown
26---
27output:
28 posterdown::posterdown_html
29---
30
31```