Typst is a modern typesetting system designed as an alternative to LaTeX. It offers a simpler syntax, faster compilation, and programmatic document creation.
| "unknown variable" | Undefined identifier | Check spelling, ensure #let before use | | "expected X, found Y" | Type mismatch | Check function signature in docs | | "file not found" | Bad import path | Paths resolve relative to the current file | | "unknown font" | Font not installed | Use system fonts or web-safe alternatives |
| "maximum function call depth exceeded" | Deep recursion | Limit recursion, use iteration instead |
Создание Typst документов и разработка пакетов. Используйте, когда: (1) работает с файлами .typ, (2) пользователь упоминает typst, typst.toml или typst-cli, (3) создает или использует пакеты Typst, (4) разрабатывает шаблоны документов, (5) конвертирует Markdown/LaTeX в Typst Источник: lucifer1004/claude-skill-typst.