brentthorne | f4d5366 | 2019-06-27 17:00:54 -0400 | [diff] [blame^] | 1 | --- |
| 2 | title: "Generating reproducible conference posters using posterdown and rmarkdown" |
| 3 | author: "Brent Thorne" |
| 4 | date: "`r Sys.Date()`" |
| 5 | output: rmarkdown::html_vignette |
| 6 | vignette: > |
| 7 | %\VignetteIndexEntry{posterdown} |
| 8 | %\VignetteEngine{knitr::rmarkdown} |
| 9 | %\VignetteEncoding{UTF-8} |
| 10 | --- |
| 11 | |
| 12 | ```{r setup, include = FALSE} |
| 13 | knitr::opts_chunk$set( |
| 14 | collapse = TRUE, |
| 15 | comment = "#>" |
| 16 | ) |
| 17 | ``` |
| 18 | |
| 19 | This 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 | |
| 23 | To generate a blank poster document add the following to your `.Rmd` file: |
| 24 | |
| 25 | ```markdown |
| 26 | --- |
| 27 | output: |
| 28 | posterdown::posterdown_html |
| 29 | --- |
| 30 | |
| 31 | ``` |