Guidelines for Creating a Good Scientific Poster

This post contains general guidelines on how to make a scientific poster. You should always check the standards and requirements for the specific conference, site or session where you will be presenting. Updated 11-2023

Quick links to content on this page

Templates

Powerpoint templates are the current standard method for creating scientific posters in many fields.

  • Powerpoint template.
    • Trifold tabletop templates are seldom used.
    • Common sizes are 36” x 48”
    • Choose either a three, or four column layout by following the instructions along the right sidebar.
  • Chico State Biology Student Research Symposium posters tend to be 4’x3’. See the 2022 [event page here] for guidance and templates.

Collaboration

  • If you are working with a partner on this project, you can upload your powerpoint template to Google Drive. It will keep the correct scaling and allow you to simultaneously edit the file.

Content

The following sections of information must be included in each poster. The choice of design, boxes, columns is up to you. The direction of the story should go top to bottom, then left to right. Read in columns, not rows.

  1. Title
    • Author list should have the form Last, MI., First, Last, MI. First (last name, middle initial (optional), first initial or name)
    • Affiliations can be listed many ways. Your best bet is to look at other posters presented at the same event form a prior year. For a class project, simply state your year, class and section number.
  2. Introduction
    • Probably the only part that will be in paragraph form.
    • This is your lead-in, the part that sets the stage for your analysis.
    • Limited background and lit review go here also.
    • Your research hypothesis should be clearly stated here.
  3. Methods (Data collection and analysis)
    • Where did your data come from?
    • Clearly state the variables that you are using, and any major recoding done (truncation, subsetting).
    • Describe the statistical analysis methods you used.
    • Include a sentence about what variables were tested as moderators and/or confounders.
  4. Sample characteristics
    • This is where Table 1 goes, a concise univariate description of your sample.
    • Analysis sample size, N(%) for each categorical variable, mean(sd) (or mean/median) for each continuous measurement.
    • Could be a candidate for tbl_summary
  5. Results
    • No more than 2 graphs or tables for bivariate comparisons

    • One multivariate table or plot. Here are some options

    • At least one coefficient, the primary explanatory variable, must be interpreted in context of the problem.

    • You are just stating results here, not justifying, explaining or connecting any meanings.

  6. Conclusions/discussion
    • Summarize results in English sentences
    • Draw and describe the big picture conclusions. Connect the breadcrumbs discussed in the results section.
    • Make sure every statement here is backed up with evidence shown in the results.
  7. Implications
    • Why should someone care about this research?
    • Connect to current research. Possibly more citations here.
  8. References
    • Font size can be reduced to 8 or 6 minimum.
  9. Acknowledgements & Contact info
    • Any help you received from a person not listed as an author should be acknowledged.
    • You do not need to acknowledge your instructor for class projects.
    • The first author should include their contact email.
    • If you have no acknowledgements, you can stick your email address in the bottom right corner as a footer.

Aestetics

Font size

  • Readable from 10 feet
  • This tends to be at least 20-24 pt font. If using a template, stick with their defaults.
  • If presenting an e-poster err on the side of larger font, upwards of 30
  • Bullets vs. Paragraphs: Pretty field specific.
    • Often the introduction or abstract is the same paragraph used when submitting the abstract for consideration.
    • Walls of text tend to not be read.
  • White space: Also somewhat field specific. You want the poster to be readable and eye catching.

Tables

  • Build them in PowerPoint tables directly
  • Use borders for the top, and bottom of the table
    • Use vertical borders sparingly. Probably only for the far left corner.
    • Powerpoint has some good auto-formats you can use.
  • New (but untested) option as of 2023 - create regression tables using tbl_regression, then save as an image using gtsave

Graphics

  • Copy/pasted graphics do not scale up well and will print out very pixelated or blurry.
  • Guidance for using R: Finalize the plot, save it to an R object, then use ggsave to save the image to a file on your computer. Then import this plot into your powerpoint.
plot1 <- ggplot(mtcars, aes(x=mpg, y=wt)) + geom_point() # save the plot
ggsave(plot1, # name of the plot
        "mtcars.pdf", # name of the file. This will export to your working directory. 
        width = 6, height = 6, units = "in") # size of the plot
  • Always best to save the file larger rather than smaller, then manually shrink down in PPT
  • You can increase the base size of text in your graphic (so it looks reasonable once you export) by adding a base_size= argument to your theme(). I would suggest starting at 18. I.e.: theme_bw(base_size=18)
  • Want to see what it’ll look like when scaled up? If you plan on getting your poster printed at twice the size of the file, make sure you zoom to 200% when checking that images look crisp.

Campus Logos

Your poster is a professional publication. It should reflect your campus properly and following guidelines (where they are listed). Every campus has official logos, colors and instructions on how to correctly use these. Below I have linked the ones I could find for Chico State.

Colors in plots

Printing (as appropriate - prices are as of 2022)

  • Don’t wait until the morning of to print - this is ESPECIALLY true in Spring when there are multiple poster symposiums being conducted.
  • Don’t spend a fortune!
  • Recommended option Copy & Print center in the Library website. Prices range from $20 (18"x24”) to $72 (36” x 48”)
  • Staples $65
  • Ellis Art (Esplanade) $50-60

Evaluation Criteria

This is a general set of criteria commonly used to score posters.

  • Appearance
    • Display attracts viewer’s attention.
    • Words are easy to read from an appropriate distance.
    • Poster is well organized and easy to follow.
    • Graphics and other visuals enhance presentation.
    • The poster is neat and appealing to look at.
  • Content
    • Purpose of model (question being addressed) is stated clearly.
    • I understand why someone might be interested in the model results.
    • There is enough detail about methods (e.g., creating new variables) for me to understand the model and results.
    • The sample characteristics are fully described.
    • The approach taken is appropriate for the problem and technically sound.
    • Conclusions are stated clearly.
    • Conclusions are supported by model results.
    • Limitations of the study are clear.
  • Presentation
    • Presenter’s response to questions demonstrated knowledge of subject matter and project
    • The presenters conducted themselves professional during the presentation.
    • It was clear that all team members understood what was being presented and had an equal contribution to the data analysis. One member did not dominate the presentation and questions.

Examples

This Google Drive folder contains a selection of sample posters, from professional conferences, graduate and undergraduate class projects. Class projects have comments regarding what made them stand out, and what could be improved.

Professional Conferences

Professional Conference Presentations

Graduate class projects

Undergraduate class Projects

Robin Donatello
Robin Donatello
Associate Professor of Statistics and Data Science

My research interests are often in the field of Public Health, Education and Student Success. I enjoy using data to help others make the world a better place.

Related