How to export my document to a Microsoft word doc? #2561
|
Hi, l am curious about whether l can export my document on Typst to a Microsoft Word Docs. The only option about export l see is export to a pdf. |
Replies: 4 comments 6 replies
|
You cannot, but you can use pandoc to convert it. It'll be imperfect though. |
Thanks. That maybe inconvenient. However, I am still wondering whether Typst doesn't support 'export to Microsoft word docs' function. π |
|
Typst itself does not support exporting documents as MS Word Pandoc, however, does include a feature to convert Typst documents to Word |
|
In case someone is looking into this in the future, I've found some more options. |
Typst itself does not support exporting documents as MS Word
.doc/.docxfiles. That format is not well suited for sharing documents and it is difficult to export already fully formatted, laid out and typeset documents to it. It is a format meant for editing, after all.Pandoc, however, does include a feature to convert Typst documents to Word
.docx(not.docthough). Beware that styling and certain text objects will display differently or get lost entirely after that export. It is a very much imperfect conversion.See Installing pandoc for information on installing it. The command to convert a document is simply
pandoc main.typ -o main.docx.