scientific-skills/latex-posters/references/poster_design_principles.md
Effective poster design balances visual appeal, readability, and scientific content. This guide covers typography, color theory, visual hierarchy, accessibility, and evidence-based design principles for research posters.
Guide viewers through content in logical order using size, color, position, and contrast.
Hierarchy Levels:
Primary (Title): Largest, most prominent
Secondary (Section Headers): Organize content
Tertiary (Body Text): Main content
Quaternary (Captions, References): Supporting info
Implementation:
% Define hierarchy in LaTeX
\setbeamerfont{title}{size=\VeryHuge,series=\bfseries} % 90pt+
\setbeamerfont{block title}{size=\Huge,series=\bfseries} % 60pt
\setbeamerfont{block body}{size=\LARGE} % 30pt
\setbeamerfont{caption}{size=\large} % 24pt
Empty space is not wasted space—it enhances readability and guides attention.
White Space Functions:
Guidelines:
LaTeX Implementation:
% beamerposter spacing
\setbeamertemplate{block begin}{
\vskip2ex % Space before block
...
}
% tikzposter spacing
\documentclass[..., blockverticalspace=15mm, colspace=15mm]{tikzposter}
% Manual spacing
\vspace{2cm} % Vertical space
\hspace{1cm} % Horizontal space
Proper alignment creates professional, organized appearance.
Alignment Types:
Grid Systems:
Best Practices:
Design for natural eye movement and logical content progression.
Common Reading Patterns:
Z-Pattern (Landscape posters):
Start → → → Top Right
↓
Middle Left → → Middle
↓
Bottom Left → → → End
F-Pattern (Portrait posters):
Title → → → →
↓
Section 1 → →
↓
Section 2 → →
↓
Section 3 → →
↓
Conclusion → →
Gutenberg Diagram:
Primary Area Strong Fallow
(top-left) (top-right)
↓ ↓
Weak Fallow Terminal Area
(bottom-left) (bottom-right)
Implementation Strategy:
Recommended Fonts:
Sans-Serif (Recommended for posters):
Serif (Use sparingly):
Avoid:
LaTeX Implementation:
% Helvetica (sans-serif)
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
% Arial-like
\usepackage{avant}
\renewcommand{\familydefault}{\sfdefault}
% Modern fonts with fontspec (requires LuaLaTeX/XeLaTeX)
\usepackage{fontspec}
\setmainfont{Helvetica Neue}
\setsansfont{Open Sans}
Absolute Minimum Sizes (readable from 4-6 feet):
Testing Readability:
Size Conversion:
| LaTeX Command | Approximate Size | Use Case |
|---|---|---|
\tiny | 10pt | Avoid on posters |
\small | 16pt | Minimal use only |
\normalsize | 20pt | References (scaled up) |
\large | 24pt | Captions, small text |
\Large | 28pt | Body text (minimum) |
\LARGE | 32pt | Body text (recommended) |
\huge | 36pt | Subheadings |
\Huge | 48pt | Section headers |
\VeryHuge | 72pt+ | Title |
Use:
Avoid:
Line Spacing:
% Increase line spacing for readability
\usepackage{setspace}
\setstretch{1.3} % 1.3x normal spacing
% Or in specific blocks
\begin{spacing}{1.5}
Your text here with extra spacing
\end{spacing}
Colors convey meaning and affect viewer perception:
| Color | Associations | Use Cases |
|---|---|---|
| Blue | Trust, professionalism, science | Academic, medical, technology |
| Green | Nature, health, growth | Environmental, biology, health |
| Red | Energy, urgency, passion | Attention, warnings, bold statements |
| Orange | Creativity, enthusiasm | Innovative research, friendly approach |
| Purple | Wisdom, creativity, luxury | Humanities, arts, premium research |
| Gray | Neutral, professional, modern | Technology, minimal designs |
| Yellow | Optimism, attention, caution | Highlights, energy, caution areas |
1. Monochromatic: Variations of single hue
% Monochromatic blue scheme
\definecolor{darkblue}{RGB}{0,51,102}
\definecolor{medblue}{RGB}{51,102,153}
\definecolor{lightblue}{RGB}{204,229,255}
2. Analogous: Adjacent colors on color wheel
% Analogous blue-green scheme
\definecolor{blue}{RGB}{0,102,204}
\definecolor{teal}{RGB}{0,153,153}
\definecolor{green}{RGB}{51,153,102}
3. Complementary: Opposite colors on wheel
% Complementary blue-orange scheme
\definecolor{primary}{RGB}{0,71,171} % Blue
\definecolor{accent}{RGB}{255,127,0} % Orange
4. Triadic: Three evenly spaced colors
% Triadic scheme
\definecolor{blue}{RGB}{0,102,204}
\definecolor{red}{RGB}{204,0,51}
\definecolor{yellow}{RGB}{255,204,0}
5. Split-Complementary: Base + two adjacent to complement
Ensure readability with sufficient contrast:
Excellent Contrast (Use these):
Poor Contrast (Avoid):
Contrast Ratio Standards:
LaTeX Color Contrast:
% High contrast header
\setbeamercolor{block title}{bg=black, fg=white}
% Medium contrast body
\setbeamercolor{block body}{bg=gray!10, fg=black}
% Check contrast manually or use online tools
~8% of males and ~0.5% of females have color vision deficiency.
Safe Color Combinations:
Avoid:
Recommended Palettes:
IBM Color Blind Safe (excellent accessibility):
\definecolor{ibmblue}{RGB}{100,143,255}
\definecolor{ibmmagenta}{RGB}{254,97,0}
\definecolor{ibmpurple}{RGB}{220,38,127}
\definecolor{ibmcyan}{RGB}{33,191,115}
Okabe-Ito Palette (scientifically tested):
\definecolor{okorange}{RGB}{230,159,0}
\definecolor{okskyblue}{RGB}{86,180,233}
\definecolor{okgreen}{RGB}{0,158,115}
\definecolor{okyellow}{RGB}{240,228,66}
\definecolor{okblue}{RGB}{0,114,178}
\definecolor{okvermillion}{RGB}{213,94,0}
\definecolor{okpurple}{RGB}{204,121,167}
Paul Tol's Bright Palette:
\definecolor{tolblue}{RGB}{68,119,170}
\definecolor{tolred}{RGB}{204,102,119}
\definecolor{tolgreen}{RGB}{34,136,51}
\definecolor{tolyellow}{RGB}{238,221,136}
\definecolor{tolcyan}{RGB}{102,204,238}
Match university or department colors:
% Example: Stanford colors
\definecolor{stanford-red}{RGB}{140,21,21}
\definecolor{stanford-gray}{RGB}{83,86,90}
% Example: MIT colors
\definecolor{mit-red}{RGB}{163,31,52}
\definecolor{mit-gray}{RGB}{138,139,140}
% Example: Cambridge colors
\definecolor{cambridge-blue}{RGB}{163,193,173}
\definecolor{cambridge-lblue}{RGB}{212,239,223}
Design posters usable by the widest range of people:
1. Visual Accessibility:
2. Cognitive Accessibility:
3. Physical Accessibility:
Make posters accessible to screen readers (for digital versions):
% Add alt text to figures
\includegraphics[width=\linewidth]{figure.pdf}
% Alternative: Include detailed caption
\caption{Bar graph showing mean±SD of treatment outcomes.
Control group (blue): 45±5\%; Treatment group (orange): 78±6\%.
Asterisks indicate significance: *p<0.05, **p<0.01.}
Don't rely on single sensory channel:
Use Redundant Encoding:
Example:
% Good: Color + shape + label
\begin{tikzpicture}
\draw[fill=blue, circle] (0,0) circle (0.3) node[right] {Male: 45\%};
\draw[fill=red, rectangle] (0,-1) rectangle (0.6,-0.4) node[right] {Female: 55\%};
\end{tikzpicture}
Divide poster into 3×3 grid; place key elements at intersections:
+-----+-----+-----+
| × | | × | ← Top third (title, logos)
+-----+-----+-----+
| | × | | ← Middle third (main content)
+-----+-----+-----+
| × | | × | ← Bottom third (conclusions)
+-----+-----+-----+
↑ ↑
Left Right
Power Points (intersections):
Symmetric Layouts:
Asymmetric Layouts:
Visual Weight Balance:
Gestalt Principles:
Proximity: Items close together are perceived as related
[Introduction] [Methods]
[Results] [Discussion]
Similarity: Similar items are perceived as grouped
Continuity: Eyes follow lines and paths
Closure: Mind completes incomplete shapes
Strategic use of icons enhances comprehension:
Benefits:
Best Practices:
LaTeX Implementation:
% Font Awesome icons
\usepackage{fontawesome5}
\faFlask{} Methods \quad \faChartBar{} Results
% Custom icons with TikZ
\begin{tikzpicture}
\node[circle, draw, thick, minimum size=1cm] {\Huge \faAtom};
\end{tikzpicture}
Use Borders To:
Border Styles:
Guidelines:
% tikzposter borders
\usecolorstyle{Denmark}
\tikzposterlatexaffectionproofoff % Remove bottom-right logo
% Custom border style
\defineblockstyle{CustomBlock}{
titlewidthscale=1, bodywidthscale=1, titleleft,
titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt,
bodyverticalshift=0pt, roundedcorners=10, linewidth=2pt,
titleinnersep=8mm, bodyinnersep=8mm
}{
\draw[draw=blocktitlebgcolor, fill=blockbodybgcolor,
rounded corners=\blockroundedcorners, line width=\blocklinewidth]
(blockbody.south west) rectangle (blocktitle.north east);
}
Background Options:
Plain (Recommended):
Gradient:
Textured:
Avoid:
% Gradient background in tikzposter
\documentclass{tikzposter}
\definecolorstyle{GradientStyle}{
% ...color definitions...
}{
\colorlet{backgroundcolor}{white!90!blue}
\colorlet{framecolor}{white!70!blue}
}
% Watermark
\usepackage{tikz}
\AddToShipoutPictureBG{
\AtPageCenter{
\includegraphics[width=0.5\paperwidth,opacity=0.05]{university-seal.pdf}
}
}
1. Too Much Text (Most common mistake)
2. Poor Contrast
3. Font Size Too Small
4. Cluttered Layout
5. Inconsistent Styling
6. Poor Figure Quality
7. Color Overload
8. Ignoring Visual Hierarchy
9. Information Overload
10. Poor Typography
Research on poster effectiveness shows:
Findings from Studies:
Viewers spend 3-5 minutes average on posters
Visual content processed 60,000× faster than text
High contrast improves recall by 40%
White space increases comprehension by 20%
Three-column layouts most effective for portrait posters
QR codes increase engagement by 30%
xcolor: Extended color supporttcolorbox: Colored boxes and framesfontawesome5: Icon fontsqrcode: QR code generationtikz: Custom graphicsEffective poster design requires balancing aesthetics, readability, and scientific content. Follow these core principles:
Remember: A poster is an advertisement for your research and a conversation starter—not a substitute for reading the full paper.