Folio is a universal project management document generator for Typst. Define your entire project once in a single data file and generate a complete, professionally styled suite of PM documents — charter, Gantt chart, risk matrix, budget, stakeholder map, and more — all from one source of truth.
See the Overview for a comprehensive guide, feature list, and data structure documentation, or check out the Manual for full details.
Via Typst Universe
#import "@preview/folio:0.0.1": *Get a full project management document suite running in two files.
dt.typ — your project data (the single source of truth):
#let project = (
name: "My Project",
version: "1.0.0",
status: "En Progreso",
// ... risks, budget, stakeholders, phases, milestones, etc.
)main.typ — pick the documents you need:
#import "@preview/folio:0.0.1": *
#import "dt.typ": project
#charter(project)
#gantt(project)Then compile:
typst compile main.typFor the full list of available documents and project data structure, see docs/overview.md.
MIT License — See LICENSE for details.