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: Templates so you don’t reinvent the wheel.
- Content: Sections within the poster
- Aestetics: Font, tables, graphics, colors, logos,
- Printing: Guidance, location and prices
- Evaluation: grading rubric
- Examples: Selected examples with comments.
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”, but 24” x 36” is also okay for class purposes.
- 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.
- 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.
- 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.
- 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.
- 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
- Results
-
No more than 2 graphs or tables for bivariate comparisons
-
One multivariate table or plot. Here are some options
- tbl_regression
- The
coefplot()
function in thearm
package. Example - Forestplot
-
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.
-
- 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.
- Implications
- Why should someone care about this research?
- Connect to current research. Possibly more citations here.
- References
- Font size can be reduced to 8 or 6 minimum.
- 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.
- 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 yourtheme()
. 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.
- [University Naming]
- [Color Palette]
-
[Logo and Seal]
- Note that certain logos are restricted for Athletics, or for official use. Use the institutional logo, or the institutional wordmark.
Colors in plots
- Colors are good - but stick to a theme/pallet.
- Make the colors meaningful.
- https://www.w3schools.com/colors/colors_groups.asp
- http://paletton.com
- R Cookbook guide for colors in ggplot2: http://www.cookbook-r.com/Graphs/Colors_(ggplot2)/
Printing (as appropriate - prices are as of 2024)
- 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 $10 (18"x24”) to $36 (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
- Patterns of Sexual Experience Among an Urban Sample of Latino and African-American 9th Grade Students Jeffries, RA., De Rosa, CJ., Moulton, B., Chung, EQ.
- Sexual Identity and Associated Factors Among and Ethnically Diverse Sample of 9th Grade Public School Students Viola, R., Jeffries, RA., Moulton, B., De Rosa, CJ.
- Pre-sexual behaviors as predictors of sexual risk in adolescents: Examining alternate outcomes in sexual health education programs Moulton, BD., Donatello, RA., Rohrbach, L., Afifi, A., Meyer, KI., Leon, P., Lau, C.
- Implementing a Flipped Classroom and Active Learning Techniques in General Chemistry to Augment Student Success at a Mid-Sized Rural University Smith, M., Aguilar, R., Cherrette, V., Rose, A., Crane, J., Park, C., Bladorn, E., Mills, H., Sherry, S., Chatha, C., Park, H., Dailey, H., Donatello, RA., Wasinger, E.
- The Impact of Supplemental Instruction on Student Success Aguilar, R., Donatello, RA.
Graduate class projects
-
Relationship Between Alcohol Consumption and Among Gender and Age Groups Gonzales, J.
- Good tables, could use larger font.
- Clearly stated research questions
- Good balance of white space. Not entirely walls of text.
-
Species-specific tree leaf comparisons in the absence of bird predation on caterpillars Parker S.
- Excellent use of whitespace, balanced colors.
- Great table 1, bullet point results make it easy to read.
-
Effects of Childhood Social Support on Trauma Hostler, M., Thornton A., Wong R.
- Clearly laid out variables of interest and RQ’s.
- Good use of pie charts.
- The 3D scatterplot is not helpful.
- Model results presented in a nice table, but not explained.
-
Using 2010 U.S. Census Demographics to Determine a Predictor for Beer and Wine Consumption Ellis, C., Esposito, C., LaGrange, A.
- Great use of maps, model comparison table in the bottom middle.
- Bullet points clear and easy to read.
- Univariate summary statistics very clearly laid out.
-
Moving away from BMI Brooke, C., Coronoa, J., Kessner, Sl, Lona, I.
- Great modification of base plots to tell a story.
- Good use of middle two columns to explain two separate outcomes.
- Clean tables, sufficient whitespace
Undergraduate class Projects
-
The Associations Between Familial Relationships, Daily Activities and Delinquency in Adolescents Guetta, R.
- Very clearly laid out RQ’s and introduction.
- Discussion connects to current literature.
-
The Effects of Voter Demographics on the 2016 Primary Elections Jordan, A., Arriaza, L., Ejaz, N., Loeblich, A., Wain, C.
- Watermarks on bottom corners make words difficult to read.
- Table under results not made in Excel.
- Not easy to follow direction of story
- Influence of drivers race on the outcome of a traffic stop Gomez, E.
- Investigating the association between parental dynamics and adolescent deviant behavior FLores, A., Turner S.
- The relationship between one’s self-image and feeling that they are liked by their peers Stainton, E., Simpson, B.
- The relationship between sleep disturbance and mental health Myrick, S., Rizzo, S.
-
Crater Depth & Diameter and their Association with Hemisphere & Ejecta Type Huntington, C. and Mavis, E.
- Clean borderless columns
- Good modification of high density plots
- Does tree type affect the type of caterpillars that are found in the presence of birds? Tucker, K., McKibben. C.