AutoFigure-Edit turns paper method sections into editable SVG figures
A

AutoFigure-Edit turns paper method sections into editable SVG figures

AutoFigure-Edit turns paper method sections into editable SVG figures

3,891 stars
N/A forks
N/A contributors

README

Project documentation from GitHub

Turn Paper Methods Into Editable SVG Figures with AutoFigure Edit

Ever read a paper that describes a methodology in pure text and wished you could instantly see the flow as a clean diagram? Or maybe you’re trying to reuse a figure from a paper but can’t edit the static image without starting from scratch.

AutoFigure Edit is an open source tool that takes the method section of a scientific paper and turns it directly into an SVG figure you can edit. No more manually redrawing pipelines or copying text into diagram tools.

What It Does

The tool reads a paper’s methods section (or any descriptive text about a process), parses the steps and their relationships, and generates a vector graphic. The output is an SVG file that represents the workflow as a clear, labeled diagram. Each step becomes a node, and connections between steps become arrows or lines.

Under the hood, it uses language models to understand the text, extracts the logical sequence of actions, and renders them into a structured figure. The SVG format means you can open it in any vector editor (Illustrator, Inkscape, even VS Code with an SVG preview) and tweak colors, reposition nodes, or add annotations.

Why It’s Cool

The obvious use case is for researchers who want to quickly visualize a workflow from a paper. But here’s what makes it stand out:

  • Editability is the core feature. Most tools that generate diagrams from text produce pixel images or rasterized outputs. AutoFigure Edit gives you an SVG so you can modify layouts, font sizes, or colors after generation. No need to regenerate the whole thing just to fix a label.

  • Works with any text, not just structured data. You can paste a paragraph from a paper, a blog post, or even a product description. The tool figures out the sequence and hierarchy on its own. It’s not limited to rigid JSON or YAML inputs.

  • Open source and local first. The repo is straightforward Python. You can run it on your own machine without sending data to a third party. That matters for confidential or unreleased research.

  • Customizable rendering. The SVG generation is modular, so if you want different shapes, colors, or layout algorithms, you can tweak the code. It’s not a black box.

How to Try It

The repository is at github.com/ResearAI/AutoFigure-Edit. Clone it, install the dependencies from requirements.txt, and run the main script with your text snippet or a PDF path.

git clone https://github.com/ResearAI/AutoFigure-Edit.git
cd AutoFigure-Edit
pip install -r requirements.txt
pyt

Did you like this issue?

Join our weekly newsletter

Love discovering amazing projects?

Help us continue bringing you the best open-source discoveries every week.

Back to Projects
Last updated: Jun 5, 2026