Metadata-Version: 2.4
Name: docxwright
Version: 1.0.1
Summary: A pragmatic LaTeX-to-DOCX converter for editable scientific manuscripts.
Author: Kenan Hanke
License-Expression: AGPL-3.0-or-later
Project-URL: Homepage, https://github.com/KenanHanke/docxwright
Project-URL: Issues, https://github.com/KenanHanke/docxwright/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: THIRD_PARTY_LICENSES/python-docx.MIT.txt
Requires-Dist: python-docx>=1.1.0
Dynamic: license-file

# docxwright

`docxwright` converts a LaTeX manuscript into an editable DOCX document without
requiring external tools such as Pandoc. It is intentionally pragmatic: it walks
included subfiles, keeps tables, replaces figures with placeholders and captions,
normalizes common LaTeX text/math to Unicode, emits author-year citation text
from Better-BibTeX-style keys, and omits the bibliography. It's available on
[PyPI](https://pypi.org/project/docxwright/) and can be installed using
`pip install docxwright`

```bash
docxwright paper-example/main.tex -o paper-example/out/main.docx
```

For inspection, a Markdown-like intermediate representation can also be written:

```bash
docxwright paper-example/main.tex -o paper-example/out/main.docx --markdown paper-example/out/main.md
```
