| --- |
| title: Generate Reproducible IDS-CD compliant HTML and PDF Posters |
| subtitle: Using RMarkdown and `posterdown.ids::posterdown_ids` |
| author: |
| - name: Brent Thorne |
| affil: 1 |
| orcid: '0000-0002-1099-3857' |
| - name: Marc Kupietz |
| affil: 2 |
| orcid: '0000-0001-8997-8256' |
| affiliation: |
| - num: 1 |
| address: Department of Earth Science, Brock University |
| - num: 2 |
| address: IDS Mannheim |
| contact: |
| name: Marc Kupietz |
| department: Digital Linguistics |
| email: kupietz@ids-mannheim.de |
| website: "https://www.ids-mannheim.de/digspra/" |
| qrlink: > |
| `r posterdown.ids::qrlink('https://korap.ids-mannheim.de/gerrit/plugins/gitiles/IDS-Mannheim/posterdown')` |
| column_numbers: 2 |
| # logoright_name: https://raw.githubusercontent.com/brentthorne/posterdown/master/images/betterhexlogo.png |
| logoleft_name: https://raw.githubusercontent.com/brentthorne/posterdown/master/images/betterhexlogo.png |
| output: |
| posterdown.ids::posterdown_ids: |
| self_contained: false |
| keep_md: true |
| bibliography: packages.bib |
| csl: "https://raw.githubusercontent.com/ICLC-10/Zotero/master/styles/ICLC-10.csl" |
| keep_md: true |
| --- |
| |
| ```{r setup, include=FALSE} |
| library(qrcode) |
| knitr::opts_chunk$set(dev = 'svg', echo = FALSE) |
| ``` |
| |
| # Introduction |
| |
| Welcome to `posterdown::ids_poster`! This is my attempt to adapt the `posterdown` R package to the IDS Mannheim corporate design. Most features from R Markdown are available in this package such as Markdown section notation, figure captioning, and even citations like this one [@R-rmarkdown]. The rest of this example poster will show how you can insert typical conference poster features into your own document. |
| |
| ## Objectives |
| |
| 1. Easy to use reproducible poster design. [^1] |
| 2. Integration with R Markdown. |
| 3. Easy transition from `posterdown` ➝ `pagedown` report or manuscript documents [@R-pagedown] and [revealjs-ids](https://gitlab.ids-mannheim.de/ids/revealjs). |
| |
| [^1]:Footnotes are possible, too. |
| |
| # Methods |
| |
| This package uses the same workflow approach as the R Markdown you know and love. Basically it goes from RMarkdown > Knitr > Markdown > Pandoc > HTML/CSS > PDF. You can even use the bibliography the same way [@R-posterdown]. |
| |
| ### Bibliography |
| |
| * for generating references and bibliography Zotero is used |
| * in order to produce IDS citation standard compliant bibliographies, put this into your header: |
| |
| ```yaml |
| csl: "https://raw.githubusercontent.com/ICLC-10/Zotero/master/styles/ICLC-10.csl" |
| ``` |
| |
| |
| # Results |
| |
| Usually you want to have a nice table displaying some important results that you have calculated. In `posterdown` this is as easy as using the `kable` table formatting you are probably use to as per typical R Markdown formatting. |
| |
| You can reference tables like so: Table \@ref(tab:mytable). Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam placerat augue at velit tincidunt semper. Donec elementum porta posuere. Nullam interdum, odio at tincidunt feugiat, turpis nisi blandit eros, eu posuere risus felis non quam. Nam eget lorem odio. Duis et aliquet orci. Phasellus nec viverra est. |
| |
| ```{r mytable, out.width='60%'} |
| knitr::kable(iris[1:10, 1:3], caption = 'Table caption.',align = 'c',"html") |
| ``` |
| |
| Or with figures: Figure \@ref(fig:standard-plot), or Figure \@ref(fig:morefigs). |
| |
| ```{r standard-plot, out.width='80%', fig.align='center', fig.cap='Great figure!', fig.height=5} |
| plot(mtcars[1:2]) |
| ``` |
| |
| ```{r morefigs, out.width='80%', echo=TRUE, fig.align='center', fig.cap='Amazing, right?!', fig.height=5} |
| data <- iris |
| |
| plot(x = data$Sepal.Length, |
| y = data$Sepal.Width, |
| col = data$Species, |
| pch = 19, |
| xlab = "Sepal Length (cm)", |
| ylab = "Sepal Width (cm)") |
| |
| ``` |
| |
| # Next Steps |
| |
| Aliquam sed faucibus risus, quis efficitur erat. Vestibulum semper mauris quis tempus eleifend. Aliquam sagittis dictum ipsum, quis viverra ligula eleifend ut. Curabitur sagittis vitae arcu eget faucibus. In non elementum felis. Duis et aliquam nunc. Nunc pulvinar sapien nunc, vel pretium nisi efficitur in. Fusce fringilla maximus leo et maximus. Fusce at ligula laoreet, iaculis mi at, auctor odio. Praesent sed elementum justo. Aenean consectetur risus rhoncus tincidunt efficitur. Praesent dictum mauris at diam maximus maximus [@R-posterdown]. |
| |
| # Conclusion |
| |
| Try `posterdown` out! Hopefully you like it! |
| |
| ```{r, include=FALSE} |
| knitr::write_bib(c('knitr','rmarkdown','posterdown','pagedown'), 'packages.bib') |
| ``` |
| |
| # References |