Workflow leaderboard / Research / Figures & plotting

Produce a research poster and academic slides

制作科研海报与学术演示文稿

Research / 科研 Figures & plotting / 绘图 curated verified 2026-08-02

Reuse one verified claim and figure inventory to produce a print-ready poster and reproducible conference slides.

Variants

Free & local / 免费本地 ~45 min setup

Any current laptop; no GPU required. Confirm the printer's physical size and PDF requirements.

ComponentRolePriceLink
Quarto 1.10.18 source-controlled reveal.js slides Free / 免费GPL-2.0 open-source publishing systemchecked 2026-08-02 https://github.com/quarto-dev/quarto-cli/releases/tag/v1.10.18
Inkscape 1.4.4 physical-size poster layout and PDF export Free / 免费GPL open-source vector editorchecked 2026-08-02 https://inkscape.org/release/inkscape-1.4.4/

Save as slides.qmd front matter

---
title: "Study title"
format:
  revealjs:
    slide-number: true
    incremental: false
    embed-resources: true
    width: 1600
    height: 900
execute:
  freeze: auto
---

## Research question

## Method

## Main result

## Limitations

## Data and code availability

Render slides and verify links

quarto render slides.qmd
rg -n 'TODO|TBD|citation needed' slides.qmd poster/
sha256sum slides.qmd slides.html poster/poster.svg poster/poster.pdf figures/* > presentation-SHA256SUMS

Poster handoff specification

document_size: obtain_from_conference
layout_columns: 3
minimum_body_text_pt: 24
minimum_caption_text_pt: 18
required_blocks:
  - question
  - method
  - main_result
  - limitations
  - contact_and_accessibility
asset_rules:
  data_figures_from_code: true
  manual_data_edits: forbidden
  raster_effective_dpi_at_print_size: 300
preflight:
  - print_at_100_percent_test_strip
  - fonts_embedded
  - qr_target_opened
  - colorblind_check
  - claims_match_manuscript

Known pitfalls

  • A slide deck and poster need different information density even when they share assets.
  • Screen appearance does not prove text is readable at print size.
  • QR codes and external links must be opened from the exported artifact.
  • Never alter plotted values manually during layout.

Evidence