Remove Unnecessary Files
9 files changed
tree: 64c07e3c0cf9fece83676564627ce91673e8cb40
  1. Images/
  2. inst/
  3. man/
  4. R/
  5. .gitattributes
  6. .gitignore
  7. .Rbuildignore
  8. .travis.yml
  9. DESCRIPTION
  10. LICENSE
  11. NAMESPACE
  12. output.png
  13. posterdown.Rproj
  14. README.md
  15. skeleton.pdf
README.md

posterdown

As a graduate student, I found that it is almost a rite of passage to take early research and analysis and generate a conference poster allowing for critical feedback. This is also important for facilitating meeting the people in your field at poster sessions at academic meetings. I have also noticed that while many of my fellow graduate students use R and are getting their feet wet with RMarkdown :blush:, we always had to go back to using MS Powerpoint or Keynote or Adobe Illustrator for generating conference posters :unamused:. Posterdown was created as a proof-of-concept (to myself) that it is possible to make a beautiful poster using open source reproducible code.

From this:

To this:

Please feel free to give me feedback or requests for changes in the issues page. I am currently finishing up my Master's degree so I will have limited time to work on updating this package in the next few months but nevertheless I will do what I can! :smile:

Installation

You can install and use posterdown from github using the devtools package as seen below.


devtools::install_github("brentthorne/posterdown")

Instructions if you have never used RMarkdown

  1. Install devtools package

    install.packages("devtools")
    
  2. Install posterdown from github repo

    devtools::install_github("brentthorne/posterdown")
    
  3. Install tinytexLatex libraries:

    tinytex::install_tinytex()
    

    NOTE This will take some time to load the LaTex Packages but is the best option (in my opinion) for keeping your Latex library as small as possible. After the first download of these libraries you will not need to do this again. To confirm that Tinytex is properly installed use: tinytex:::is_tinytex() and you should get a value of TRUE in the console.

    NOTE If you have conflicting versions of Latex (i.e. tinytex and MacTex), you could have problems rendering your poster. You may need to uninstall all versions, then start over by installing posterdown and tinytex from scratch.

Overview

The posterdown package provides a familiar workflow for those used to working in RMarkdown. This package is currently focused on a single template called posterdown_pdf which is by default a 38in (H) x 45in (W) poster template but does allow for custom sizing, section headers, and colour options.

Using posterdown from RStudio

To use posterdown from RStudio:

  1. Install the latest RStudio.

  2. Install the posterdown package:

    devtools::install_github("brentthorne/posterdown")
    
  3. Use the File / New File / R Markdown.. / From Template / Posterdown PDF dialog pathway to create a conference poster from the Posterdown PDF template provided.

    New R Markdown

    NOTE If you do not see the Posterdown PDF template in this dialogue box, restart the R session or close and re-open RStudio.

Customization

Posterdown uses Latex to generate the PDF poster but more specifically it uses the Memoir Latex class. Memoir was chosen for its flexibility in page sizing as well as its thorough documentation. I am fairly new to the world of Latex, and found this class to have a reasonable amount of customization available, at least for my skill level. If there are any users who think there may be better options for down the road I am more than willing to listen!

YAML Options

YAML header options have been created to provide more freedom in design (i.e. colours, number of columns, and sizing) to fit a wide variety of requirements. Here are the default YAML options found in the .Rmd file:

OptionDescription
titlePoster title, acts as you would expect from RMarkdown. You can add line breaks in your title with \break.
authorList of authors which (as of now) only has true support for a single author, however I have provided a hacky way to have many authors until I can find the time to figure out how to implement something like the rticles packages does
affiliationAuthor affiliations, which just as the author section is currently a hacky version of what I would ultimately like to produce.
title_textsizeTitle font size. Sizes can be one of: "tiny", "scriptsize", "footnotesize", "small", "normalsize", "large", "Large", "LARGE", "huge" or "Huge", see font_size below for more information.
author_textsizeAuthor list font size
affiliation_textsizeAffiliations list font size
body_textsizeFont size of the poster's main body
bibliography_textsizeBibliography font size
font_sizeRepresents the point value for \normaltextsize in latex. All other font sizes are adjusted from this baseline. For example, if the title in the skeleton document is given the Latex command \Huge, meaning that the title text will be "huge" relative to the font_size chosen. See Here for a useful resource for a better understanding of the Latex text sizing options.
font_familySelects the font family to be used on the poster. In the future I will try to implement multiple font families for various components of the poster (such as different fonts for the title versus the main body text). For now, only standard Latex fonts are available, see here for a list of possible options.
title_bgcolThe background colour for the title section of the poster (currently using hex values to define this colour)
poster_bgcolBackground colour of the poster's main body section.
title_textcolColour of the main title text.
header_textcolColour of the Section Header Text.
header_bgcolColour of the header title box.
header_bordercolColour of the border around the header text box.
header_borderwidthThickness of the header title box border.
header_boxshapeShape of the corners for the header title box (Options include: sharp corners or rounded corners. For more options please see the tcolorbox manual and search for "sharp corners", HINT there are LOTS of options there :smile: .
cite_colColour of the citation link elements when using biblatex.
url_colColour of URL links specifically
link_colColour of in-document links (example would be referencing a Figure or a Table)
columnline_colColour of the line which divides each column in the poster
poster_heightHeight of the final poster output. Units can be: "in", "mm", "cm"
poster_widthWidth of the final poster output. Units can be: "in", "mm", "cm"
column_numbersNumber of columns you wish for the poster to have in the main section of the poster.
bibliographyName of the .bib. file which you are using to source material. As of right now only biblatex is working but I intend to add support of natbib which is my preference.
bibliography_spacingSets the mutiplier for line spacing between bibliography entries, default value is 0.8. Useful if you need to squeeze more space from somewhere.
outputFor generating posterdown_pdf, in the future other poster designs or templates may be made for this package and thus this option in the YAML will be more flexible. For now this is the only option.

Markdown Customization

As you add content to your RMarkdown file, you will notice that the output pdf will fill in columns from left to right, and from top to bottom within columns. If you have more content for your poster than space is available on the default poster, it will spill onto a second page. If this occurs, you can try adding more columns and decreasing the font size (both in the YAML header) to make it work. Or, of course, edit the content to make it shorter. :smile:

Using posterdown outside of RStudio

  1. Install pandoc using the instructions for your platform.

  2. Install the rmarkdown and posterdown packages:

    devtools::install_github("brentthorne/posterdown")
    
  3. Use the rmarkdown::draft() function to create articles:

    rmarkdown::draft("MyPoster.Rmd", template = "posterdown_pdf", package = "posterdown")
    

To Do List (When Not Writing my Master's Thesis)

  • [x] Support for changing the size of the poster
  • [ ] Support for Natbib
  • [ ] Support for nbib from PubMed
  • [ ] Support for logo placement in the title bar section of poster
  • [ ] Gradient colour options
  • [ ] True YAML multi-author/ multi-affiliation support
  • [ ] Toggle citation section on/off as per user's choice
  • [x] Make colour options standardized (probably hex colours if possible)
  • [ ] Allow users to choose colour options from a palette??
  • [x] Fill/style Section headings if user wishes