Typeset plain-text formulas in DOCX files as native Word equations — cross-platform, no Office required.
Project description
MathFmt
MathFmt turns plain-text formulas in Word documents into native Word OMML equations — stacked fractions, radicals, superscripts, subscripts, derivatives, and standard mathematical operators — suitable for textbooks, exams, and technical reports.
Quick Start · 快速开始
Who is this for? Anyone who writes math-heavy Word documents — teachers preparing
exams, students writing lab reports, engineers drafting technical specs. If you type
formulas like x^2 or sqrt(a/b) in Word and want them rendered as proper equations,
MathFmt is for you.
适合谁用? 需要在 Word 里写数学公式的人——老师出试卷、学生写实验报告、工程师写技术文档。如果你在 Word 里输入 x^2 或 sqrt(a/b) 这样的文本公式,想让它们变成原生公式,MathFmt 就是你的工具。
Install · 安装
pip install mathfmt
Requirements: Python ≥ 3.10. The only runtime dependency is lxml.
Check your environment · 检查环境
mathfmt doctor
Prints Python version, backend availability, and platform info — useful before filing a bug report.
Convert a document · 转换文档
# One-step conservative conversion (high-confidence formulas only)
mathfmt convert input.docx --output output.docx
# Scan first, review candidates, then apply (recommended for production)
mathfmt scan input.docx --report candidates.json
mathfmt apply input.docx --review candidates.json --output output.docx --report result.json
For detailed workflow, see docs/workflow.md.
Status
Beta (v0.2.2). Cross-platform OMML, confidence scoring, expanded formula support, self-update, and bug fixes.
中文
MathFmt 将 DOCX 中的普通文本公式排版为 Word 原生 OMML 公式。
快速示例
| 输入(纯文本) | 输出(Word 原生公式) |
|---|---|
ds(t)/dt |
堆叠分式 d s(t) / d t |
s'(t) = -s''(t) |
导数分数形式 |
sqrt(x^2 + 1) |
根号 √(x²+1) |
x^3 + p1 |
上标 x³ + 下标 p₁ |
x != 0 |
x ≠ 0 |
sin(x) + cos(x) |
sin(x) + cos(x) |
lim(p->0) |
lim 带下置 p→0 |
a/(b+c) |
堆叠分式 |
e^(p1*t) |
e 的 p₁t 次幂 |
1(t) |
u(t)(单位阶跃) |
Delta + pi |
Δ + π |
x, y, z |
逗号分隔序列 |
兼容性
| Windows 10/11 | macOS | Linux | |
|---|---|---|---|
| Python 3.10–3.13 | ✔ | ✔ | ✔ |
| 公式扫描 | ✔ | ✔ | ✔ |
| OMML 公式输出(内置 Python 后端) | ✔ | ✔ | ✔ |
| OMML 公式输出(Office XSL 后端) | ✔ | ✔¹ | ✔¹ |
| Word 渲染 | ✔ | ✔² | — |
¹ 需手动指定 MML2OMML.XSL 路径(--xsl)。
² macOS 版 Microsoft Word。
命令
mathfmt scan input.docx --report candidates.json # 扫描公式候选
mathfmt apply input.docx --review candidates.json --output out.docx --report result.json # 审核后转换
mathfmt convert input.docx # 保守一键转换
mathfmt validate input.docx # 离线结构验证
mathfmt doctor # 环境诊断
mathfmt update # 检查 GitHub 更新
更新
mathfmt update # 检查更新并显示安装命令
mathfmt update --check # CI 模式:有更新时退出码 1,最新时退出码 0
mathfmt update --pre # 包含预发布版本
mathfmt update --force # 跳过缓存,立即检查 GitHub
检测结果缓存 1 小时。也可直接运行:
pip install --upgrade mathfmt
版本路线
| 版本 | 内容 |
|---|---|
| 0.1.0 (2026-06-21) | 基础扫描、审核、转换;原生 Word 公式输出;Windows + Office |
| 0.2.0 (2026-06-21) | 跨平台内置 OMML;置信度评分;独立验证;积分/求和/矩阵/向量/分段 |
| 0.2.1 (2026-06-21) | GitHub 自更新;缓存隔离;SemVer 预发布支持 |
| 0.2.2 (2026-06-21) | CI/Ruff 修复;缓存崩溃修复;退出码修正;验证报告版本 |
| 0.3.0 (2026-Q4) | 转换报告;dry-run;失败公式提示;更好的错误信息 |
| 1.0.0 (2027) | 稳定 API;长期支持 |
更多文档
维护
单人维护(Leo),尽力响应。欢迎提交 Issue 和 PR,也可通过 gml853503962@gmail.com 联系。安全漏洞请参阅 SECURITY.md。
English
MathFmt converts plain-text formulas in DOCX files into native Word OMML equations.
Quick Examples
| Input (plain text in DOCX) | Output (native Word equation) |
|---|---|
ds(t)/dt |
Stacked fraction d s(t) / d t |
s'(t) = -s''(t) |
Leibniz fraction derivatives |
sqrt(x^2 + 1) |
Radical √(x²+1) |
x^3 + p1 |
Superscript x³ + subscript p₁ |
x != 0 |
x ≠ 0 |
sin(x) + cos(x) |
sin(x) + cos(x) |
lim(p->0) |
lim with under-script p→0 |
a/(b+c) |
Stacked fraction |
e^(p1*t) |
e raised to p₁t |
1(t) |
u(t) (unit step) |
Delta + pi |
Δ + π |
x, y, z |
Comma-separated sequence |
Compatibility
| Windows 10/11 | macOS | Linux | |
|---|---|---|---|
| Python 3.10–3.13 | ✔ | ✔ | ✔ |
| Formula scanning | ✔ | ✔ | ✔ |
| OMML output (built-in Python backend) | ✔ | ✔ | ✔ |
| OMML output (Office XSL backend) | ✔ | ✔¹ | ✔¹ |
| Word rendering | ✔ | ✔² | — |
¹ Manual --xsl path required for Office XSL backend.
² Microsoft Word for Mac.
Commands
mathfmt scan input.docx --report candidates.json # Scan formula candidates
mathfmt apply input.docx --review candidates.json --output out.docx --report result.json # Apply reviewed candidates
mathfmt convert input.docx # Conservative one-step conversion
mathfmt validate input.docx # Offline structure validation
mathfmt doctor # Environment check
mathfmt update # Check GitHub for updates
Updating
mathfmt update # Check for updates and show install commands
mathfmt update --check # CI mode: exit 1 when update available, 0 when current
mathfmt update --pre # Include pre-release versions
mathfmt update --force # Skip cache, re-check GitHub immediately
Check results are cached for 1 hour. You can also upgrade directly:
pip install --upgrade mathfmt
Version Roadmap
| Version | Scope |
|---|---|
| 0.1.0 (2026-06-21) | Scan, review, convert; native Word OMML; Windows + Office |
| 0.2.0 (2026-06-21) | Cross-platform built-in OMML; confidence scoring; validate; integrals, sums, matrices |
| 0.2.1 (2026-06-21) | GitHub self-update; cache isolation; SemVer pre-release support |
| 0.2.2 (2026-06-21) | CI/Ruff fixes; cache crash fix; exit code correction; validate version |
| 0.3.0 (2026-Q4) | Conversion report; dry-run; failed-formula warnings; better errors |
| 1.0.0 (2027) | Stable API; long-term support |
Further Reading
- Formula Syntax Reference — every preprocessing rule, the full grammar, MathML output mapping, and known limitations
- Workflow Guide — step-by-step install, review flow, troubleshooting, CI usage
- Examples — walkthrough from a blank test document to formatted output
- Roadmap — planned features and version timeline
Maintenance
Single-maintainer project (Leo), best-effort response. Issues and pull requests are welcome. You can also contact the maintainer at gml853503962@gmail.com. See CONTRIBUTING.md, CODE_OF_CONDUCT.md, and SECURITY.md.
Contributing
Issues and pull requests are welcome.
License
MIT License. Copyright (c) 2026 Leo.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mathfmt-0.2.3.tar.gz.
File metadata
- Download URL: mathfmt-0.2.3.tar.gz
- Upload date:
- Size: 47.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe6220d03bdff7ae3dbb6af132b4ca61b2d9f7cf985a4285056cc4287a8b67f8
|
|
| MD5 |
d2a8b63b95f1aaf3ca79f56af896be06
|
|
| BLAKE2b-256 |
0efbc5e0cc444d2d07be352789daf0b56a8cda006aa1a3138ee0298961edca95
|
Provenance
The following attestation bundles were made for mathfmt-0.2.3.tar.gz:
Publisher:
publish.yml on gml853503962-creator/mathfmt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mathfmt-0.2.3.tar.gz -
Subject digest:
fe6220d03bdff7ae3dbb6af132b4ca61b2d9f7cf985a4285056cc4287a8b67f8 - Sigstore transparency entry: 1906952998
- Sigstore integration time:
-
Permalink:
gml853503962-creator/mathfmt@e6d075f906eb65da81d07873fc3e6cf6621a7e89 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/gml853503962-creator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e6d075f906eb65da81d07873fc3e6cf6621a7e89 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mathfmt-0.2.3-py3-none-any.whl.
File metadata
- Download URL: mathfmt-0.2.3-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e158e6d48d59443a6d926171b82d4dbf8c80ac108f1d680a63fe3989b7ba11e
|
|
| MD5 |
be7ffd5b3ddf1954f76a32efbcb5ce4f
|
|
| BLAKE2b-256 |
b468a671dc1f180cd2179b1d56b5d774e46b13b9f9a713fc3d2ce3bbbff0ad7b
|
Provenance
The following attestation bundles were made for mathfmt-0.2.3-py3-none-any.whl:
Publisher:
publish.yml on gml853503962-creator/mathfmt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mathfmt-0.2.3-py3-none-any.whl -
Subject digest:
9e158e6d48d59443a6d926171b82d4dbf8c80ac108f1d680a63fe3989b7ba11e - Sigstore transparency entry: 1906953036
- Sigstore integration time:
-
Permalink:
gml853503962-creator/mathfmt@e6d075f906eb65da81d07873fc3e6cf6621a7e89 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/gml853503962-creator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e6d075f906eb65da81d07873fc3e6cf6621a7e89 -
Trigger Event:
push
-
Statement type: