Research
AutoFigure: Generating and Refining Publication-Ready Scientific Illustrations
Overview Research area: Artificial intelligence for scientific communication, specifically automated generation of publication-quality scientific illustrations from long-form scientific text. Technica
- arXiv
- 2602.03828
- Published
- 2026-02-03
- Authors
- Minjun Zhu, Zhen Lin, Yixuan Weng, Panzhong Lu, Qiujie Xie, Yifan Wei, Sifan Liu, Qiyao Sun, Yue Zhang
AI summary
Overview
- Research area: Artificial intelligence for scientific communication, specifically automated generation of publication-quality scientific illustrations from long-form scientific text.
- Technical level: Advanced. The paper combines agentic LLM frameworks, vision-language model judging, diffusion-based image synthesis, and SVG/HTML structural reasoning.
- One-sentence scope: The paper introduces FigureBench, a large-scale benchmark of 3,300 text–figure pairs, and AutoFigure, an agentic framework that transforms long scientific documents into structurally faithful and aesthetically polished illustrations.
What This Paper Is About
Producing scientific illustrations by hand is slow, specialized work that typically takes researchers days and requires both deep domain knowledge and design skill. Existing AI tools largely reconstruct figures from short captions or rearrange existing paper content, rather than reading an entire scientific text and generating an original visual explanation. AutoFigure addresses this gap by decomposing the task into structured layout planning followed by high-fidelity rendering, and it is evaluated against a new benchmark built from papers, surveys, blogs, and textbooks.
Key Contributions
-
FigureBench, the first large-scale benchmark for long-form scientific illustration generation. It contains 3,300 high-quality text–figure pairs spanning papers, surveys, blogs, and textbooks, with a 300-pair human-verified test set (Cohen's kappa = 0.91) and a 3,000-sample development set filtered by a fine-tuned vision-language model.
-
AutoFigure, the first agentic framework built on the "Reasoned Rendering" paradigm. It decouples the problem into two stages: (a) semantic parsing and layout planning that produces a machine-readable symbolic blueprint, and (b) aesthetic rendering with text post-processing.
-
A critique-and-refine self-improvement loop that simulates a dialogue between an AI designer and an AI critic, iteratively scoring and repairing candidate layouts until a quality threshold or iteration limit is reached.
-
An "erase-and-correct" text refinement strategy that removes blurred text rendered by the image model, extracts text locations via OCR, cross-verifies against ground-truth labels parsed from the symbolic layout, and re-renders accurate text as vector overlays.
-
A VLM-as-a-judge evaluation protocol combining referenced scoring across eight sub-metrics and blind pairwise comparison against ground-truth figures, supplemented by human expert evaluation.
Main Findings
-
Dominant automated evaluation performance: AutoFigure achieves the highest Overall score in every category — Blog (7.60), Survey (6.99), Textbook (8.00), and Paper (7.03) — outperforming HTML/SVG code generation, GPT-Image, and the Diagram Agent multi-agent baseline.
-
Strong blind pairwise win rates: AutoFigure wins 75.0% on Blog, 78.1% on Survey, 97.5% on Textbook, and 53.0% on Paper tasks in blind comparisons against reference figures and competing methods.
-
Human experts validate the results: In a study with 10 first-author researchers evaluating 21 of their own publications, AutoFigure achieved an 83.3% win rate against other AI models, second only to original human-authored figures (96.8% win rate). Notably, 66.7% of experts would adopt AutoFigure-generated figures for a camera-ready version of their own papers.
-
Baselines reveal a structural trade-off: Text-to-code methods (Gemini-HTML/SVG) preserve structure but score poorly on aesthetics (5.90 and 5.00 on Paper vs. AutoFigure's 7.28). End-to-end image models like GPT-Image produce attractive images but suffer on content accuracy (4.77 on Paper). AutoFigure resolves this trade-off.
-
Refinement loop yields consistent gains: Increasing test-time "thinking" iterations from zero to five steadily raises the Overall score from 6.28 to 7.14.
-
Intermediate format matters: SVG (8.98) and HTML (8.85) outperform PPT (6.12) because the first two can express an entire figure in one coherent file, whereas PPT requires incremental insertions that introduce inconsistencies.
-
Rendering stage adds value without sacrificing fidelity: Comparing pre-rendering to post-rendering scores shows large gains in Visual Design and Overall metrics (e.g., 6.38 to 7.48 with GPT-5 as the reasoning core), confirming that the decoupled rendering phase improves aesthetics while preserving structural correctness.
Methodology in Plain English
AutoFigure splits illustration generation into two clearly separated stages.
Stage I — Planning the layout. An LLM reads the long scientific document and extracts (a) a distilled methodology summary and (b) a set of entities and relationships that should appear as nodes and edges. This is serialized into a symbolic layout format (SVG or HTML) plus a style description conditioned on the document type (Paper, Survey, Blog, or Textbook). A "critic" agent then evaluates this initial layout for alignment, balance, and overlap avoidance, producing textual feedback. A "designer" agent uses that feedback to generate an improved candidate. If the candidate scores better, it replaces the current best. This loop repeats up to a preset number of iterations or until scores converge.
Stage II — Rendering and fixing text. The refined symbolic layout is converted into a detailed text-to-image prompt plus a structural graph that dictates element positions. A multimodal generative model renders this into an image. Because image models often produce garbled text, an erase-and-correct pipeline removes all text pixels, uses OCR to find where text should go, cross-verifies OCR strings against the ground-truth labels from the symbolic layout, and re-draws the corrected text as crisp vector overlays on the erased background.
For evaluation, the authors use a VLM-as-a-judge setup with two complementary methods: referenced scoring (comparing the generated figure to the ground-truth figure across visual design, communication effectiveness, and content fidelity) and blind pairwise comparison (the judge sees two figures in random order without knowing which is human-made).
Why This Matters
Scientific illustration is a persistent bottleneck in research communication. Manual creation requires days of expert effort and combines two skill sets — deep domain knowledge and professional design — that rarely coexist in one researcher. Automating this process accelerates the entire research publication pipeline and addresses a critical gap in AI scientist systems, which can currently write papers but cannot visually express their own findings.
Real-world applications:
- Academic paper writing: Researchers can generate figures for their manuscripts without hiring illustrators or spending days in design tools, with a significant fraction of outputs already judged publishable by domain experts.
- Educational content and textbooks: Publishers and educators can rapidly create clear visual explanations of complex concepts from existing text material, improving pedagogical accessibility.
- Technical blogs and surveys: Technical writers and survey authors can produce consistent, readable diagrams for long-form explanatory content.
- AI scientist systems: Autonomous research agents gain the ability to communicate their discoveries visually, closing a major capability gap in end-to-end automated science.
Industry relevance: The framework sits at the intersection of generative AI, scientific publishing, and knowledge management. Companies in academic publishing, edtech, and enterprise knowledge-sharing platforms all rely on high-quality visual explanation of complex information. AutoFigure's decoupled architecture also offers a template for any domain where structure must be preserved while aesthetics are improved — architecture diagrams, technical documentation, patent illustrations, and instructional design.
Future Directions
-
Fully editable outputs. The paper references an AutoFigure-Edit variant that supports editable icons and text, but the main framework produces static final images. Extending editability would let researchers make post-hoc modifications without regenerating from scratch.
-
Training end-to-end or trainable models. AutoFigure is an inference-only pipeline and does not fine-tune on FigureBench's development set of 3,000 samples. The authors explicitly offer this dataset to enable future trainable approaches that could be faster or cheaper.
-
Broadening document coverage and style control. The benchmark covers four categories (papers, surveys, blogs, textbooks). Extending to domains like legal documents, medical case reports, or engineering specifications — and systematically evaluating style controllability — remains open.
-
Safety and misuse safeguards. The ethics statement acknowledges the risk of generating scientifically plausible but misleading schematics. Future work could develop automated fact-checking or watermarking for AI-generated figures, and refine the proposed attribution requirements into practical enforcement mechanisms.
-
Closing the gap with human illustrators. AutoFigure still trails human-authored originals (83.3% vs. 96.8% win rate in expert pairwise comparisons), leaving headroom for improvement in accuracy, clarity, and aesthetic quality.
Target Audience
This paper is most valuable for:
- AI researchers working on multimodal generation and agentic systems, who will find the decoupled Reasoned Rendering architecture and the critique-and-refine loop directly applicable to other structured generation tasks.
- AI-for-science developers and AI scientist projects, for whom automated illustration is a missing capability in the end-to-end research pipeline.
- Scientific communication researchers and academic publishing professionals, who need to understand the current state of AI-generated figures and their publication readiness.
- Practitioners in edtech and technical documentation, who can evaluate AutoFigure as an assistive tool for producing complex explanatory visuals from long text.
- Benchmark and evaluation researchers, who will be interested in FigureBench and the VLM-as-a-judge protocol as a template for evaluating structural fidelity in generated visual content.
Authors’ abstract
High-quality scientific illustrations are crucial for effectively communicating complex scientific and technical concepts, yet their manual creation remains a well-recognized bottleneck in both academia and industry. We present FigureBench, the first large-scale benchmark for generating scientific illustrations from long-form scientific texts. It contains 3,300 high-quality scientific text-figure pairs, covering diverse text-to-illustration tasks from scientific papers, surveys, blogs, and textbooks. Moreover, we propose AutoFigure, the first agentic framework that automatically generates high-quality scientific illustrations based on long-form scientific text. Specifically, before rendering the final result, AutoFigure engages in extensive thinking, recombination, and validation to produce a layout that is both structurally sound and aesthetically refined, outputting a scientific illustration that achieves both structural completeness and aesthetic appeal. Leveraging the high-quality data from FigureBench, we conduct extensive experiments to test the performance of AutoFigure against various baseline methods. The results demonstrate that AutoFigure consistently surpasses all baseline methods, producing publication-ready scientific illustrations. The code, dataset and huggingface space are released in https://github.com/ResearAI/AutoFigure.