typ2docx is a command line tool that converts a Typst project to Microsoft
Word .docx format, with tables, cross-references, most of the styles, and most
importantly the math markups preserved. It combines the mature, comprehensive
document conversion of standard PDF-to-Word tools with Pandoc's high-quality
mathematical formula export.
You're encouraged to read this document thoroughly before using it, as I employed many non-trivial hacks for this non-trivial problem! (It involves 6 different programming languages!)
If this tool enhanced your workflow, especially if it helped with your academic publication, please consider crediting this project or sponsoring me. ❤️
Note
If you don't care about the quality of math export, this tool is no different from other PDF-to-Word converter.
If your project doesn't use any non-basic features in Typst, try Pandoc first.
Note
You may now try this tool without installing through a web app. Note that it runs on my scarce free-tier API quota, so please install this tool if you intend to use it more than once!
This tool is distributed via PyPI. Installation via
uv is recommended.
You may also use pipx or other similar tools to install and run this program.
For more details, read
uv's guide on using tools.
Execute the following command to install:
uv tool install typ2docxNote
The package installation process is expected to take some time, since it requires compiling a Rust extension. Read along to know why.
If you want to tinker with this program:
git clone [email protected]:sghng/typ2docx.git
cd typ2docx
# do your modifications...
uv tool install .The following runtime dependencies are also required:
- Pandoc, a universal document converter,
should be available in
PATH. - One of the supported
.pdfto.docxengines.
Once the tool is installed, invoke it with the path to the entry point of your
Typst project and specify an engine to convert it into Microsoft Word .docx
format. For example:
typ2docx main.typ -e pdf2docxOr, if you want better export quality and are ok with some additional steps:
# obtain your free Adobe PDF Services API key first
export PDF_SERVICES_CLIENT_ID=xxx
export PDF_SERVICES_CLIENT_SECRET=xxx
typ2docx main.typ -e pdfservicesOr, if you have Adobe Acrobat installed:
typ2docx --install-acrobat # only needed for first time using Acrobat engine
typ2docx main.typ -e acrobatRun typ2docx --help to see the help info on how to use this tool.
You need to specify the engine used to convert a PDF to .docx file. Currently
these are the available options:
pdf2docx: A Python package based on PyMuPDF. This engine is bundled withtyp2docxand can be used out of the box. The export quality of this engine is not as good as the others.- Adobe PDFServices API: It requires internet connection and valid PDFServices API credentials. This service comes with 500 free conversions per month, which should be enough for most people.
- Adobe Acrobat: It uses Acrobat's JavaScript
API to export a PDF to
.docx. Either the free Acrobat Reader or the paid Acrobat Pro would work.
There are some known issues -- which may or may not be a real issue depending on your use cases. Read the Motivation section to understand why I built this tool.
- Text in SVG/PDF images are distorted.
- Some spaces between inline equations and regular text are missing.
- Not all stylings are preserved. (This is expected, just like for any file format conversion.)
- Adobe Acrobat does a great job in converting PDF
to
.docx, but the math equations are completely messed up. - Microsoft Word can also
convert a PDF to
.docxformat. In my experience, it doesn't work as well as Adobe Acrobat. pdf2docxPython library doesn't work for most of my PDF files.- Pandoc provides superb support for math markup when
converting
.typfile to.docx, but its support for Typst is very limited. For example, it doesn't recognize basic functions like#stroke. It also doesn't support latest features in Typst, such as embedding PDF as image. typliteis a tool developed by the author oftinymist. Its support for conversion to.docxis limited, as it relies on HTML as an intermediary. Styles and cross-references are lost, and math are rendered as images.
This tool is developed so that a .docx export that meets the basic requirement
of academic paper submission can be produced. These requirements are very loose,
since the press has their own process for making a manuscript publication ready.
- Cross-referencing is NOT required.
- Figures are NOT required. They can be included as standalone attachments, as long as the names are matched.
- NO typesetting required.
With these said, the only true requirement is the quality of math equations, which must be retained effectively. And in Microsoft Word, it should be in Office Math Markup Language (OMML).
This tool is developed primarily to address the equation output problem.
The idea is to export with both Adobe Acrobat and Pandoc, and merge the best part in the two exports together.
- Branch 1
- A preamble is injected to the Typst project entry point, so that all math are rendered as markers.
- Typst compiles the project into PDF file.
- This PDF file is converted to Word format by some converter.
- Branch 2
- A Rust lib extracts all math source code in a Typst project.
- The source code are put into a new Typst source file, in order of their appearance in original document.
- This source file is converted to
.docxwith Pandoc, they are cleanly formatted with MathML.
- The two Microsoft Word files are unpacked. A XLST script merges the
document.xmlfiles by examining the markers. The result is finally repacked into a.docxfile as output.
The math source code can not be extracted with purely static analysis or regex
matching, since the location where a content is defined can be different from
where it shows up in document, and multiple source files can be involved via
#include and #import. This necessitates the use of typst and typst-eval
Rust crates for parsing as well as evaluating the Typst project.
You are more than welcome to contribute by raising issues or opening pull requests!