skills/latex-posters/SKILL.md
Research posters are a critical medium for scientific communication at conferences, symposia, and academic events. This skill provides comprehensive guidance for creating professional, visually appealing research posters using LaTeX packages. Generate publication-quality posters with proper layout, typography, color schemes, and visual hierarchy.
This skill should be used when:
STANDARD WORKFLOW: Generate ALL major visual elements using AI before creating the LaTeX poster.
This is the recommended approach for creating visually compelling posters:
Target: 60-70% of poster area should be AI-generated visuals, 30-40% text.
These are limits, not guidelines. Violating them is the single most common cause of a failed poster. Full reasoning, per-graphic-type tables, and worked examples are in references/ai_graphics_for_posters.md.
| Constraint | Limit |
|---|---|
| Elements per AI-generated graphic | 3-4 maximum (3 ideal) |
| Words per graphic | 10 maximum |
| White space per graphic | 50% minimum (60% better) |
| Key numbers / metrics | 120pt+ |
| Labels | 80pt+ |
| Body text on the poster | 24pt+ |
| Content sections (A0) | 5-6 maximum |
| Total words on the poster | 300-800 |
| Figure width | 0.85\linewidth, never 1.0 |
Every graphic prompt must include: POSTER FORMAT for A0, an explicit element or word
count (ONLY 3 icons, 3 words total), a font size (GIANT (120pt+)), 60% white space,
and a viewing distance (readable from 10-12 feet).
Two mandatory review gates. Skipping either is how unreadable posters happen:
Patterns that always fail: 7-stage workflow, timeline with annual milestones,
3 case studies in one graphic, comparison of 5+ methods, architecture with all layers.
Collapse each to 3 high-level items, or make several separate graphics.
Overflow is an error, not a warning. After compiling, run grep -i overfull poster.log
and inspect all four edges at 100% zoom. See
references/compilation_and_quality_control.md.
For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.
Key capabilities:
Three poster packages are supported — beamerposter (Beamer syntax, institutional themes), tikzposter (modern, colorful, flexible), and baposter (structured multi-column). Package comparison, layout and grid systems, design principles, standard sizes, per-package templates, figure and image integration, color schemes, typography, and QR codes are all documented in references/latex_poster_reference.md.
Reusable per-section content patterns, accessibility requirements, and presentation-day guidance are in references/poster_patterns_and_presentation.md.
Determine poster requirements:
Develop content outline:
Choose LaTeX package:
CRITICAL: Generate SIMPLE figures with MINIMAL content. Each graphic = ONE message.
Content limits:
Create figures directory:
mkdir -p figures
Generate SIMPLE visual elements:
# Introduction - ONLY 3 icons/elements
python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE visual with ONLY 3 elements: [icon1] [icon2] [icon3]. ONE word labels (80pt+). 50% white space. Readable from 8 feet." -o figures/intro.png
# Methods - ONLY 4 steps maximum
python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE flowchart with ONLY 4 boxes: STEP1 → STEP2 → STEP3 → STEP4. GIANT labels (100pt+). 50% white space. NO sub-steps." -o figures/methods.png
# Results - ONLY 3 bars/comparisons
python scripts/generate_schematic.py "POSTER FORMAT for A0. SIMPLE chart with ONLY 3 bars. GIANT percentages ON bars (120pt+). NO axis, NO legend. 50% white space." -o figures/results.png
# Conclusions - EXACTLY 3 items with GIANT numbers
python scripts/generate_schematic.py "POSTER FORMAT for A0. EXACTLY 3 key findings: '[NUMBER]' (150pt) '[LABEL]' (60pt) for each. 50% white space. NO other text." -o figures/conclusions.png
Review generated figures - check for overflow:
Select or create template:
assets/Design layout structure:
Set typography:
Create poster header:
Integrate AI-generated figures:
\includegraphics with proper sizingAdd minimal supporting text:
Add supplementary elements:
Review and iterate:
Test readability:
Optimize for printing:
Compile final PDF:
pdflatex poster.tex
# Or for better font support:
lualatex poster.tex
Verify output quality:
Prepare for printing:
Create supplementary materials:
This skill works effectively with:
Recommended workflow: Always use scientific-schematics and generate-image skills BEFORE creating the LaTeX poster to generate all visual elements.
AI-Generated Graphics Mistakes (MOST COMMON):
Fixing Overflow in AI Graphics: If your AI-generated graphics are overflowing or have small text:
Design Mistakes:
Content Mistakes:
Technical Mistakes:
Best Practices:
Ensure required LaTeX packages are installed:
# For TeX Live (Linux/Mac)
tlmgr install beamerposter tikzposter baposter
# For MiKTeX (Windows)
# Packages typically auto-install on first use
# Additional recommended packages
tlmgr install qrcode graphics xcolor tcolorbox subcaption
Helper scripts available in scripts/ directory:
review_poster.sh: Poster review and validationgenerate_schematic.py: Generate scientific diagrams and schematicsReady-to-use poster templates in assets/ directory:
Load these templates and customize for your specific research and conference requirements.