WdBibTeX is a BibTeX toolkit for MS Word.
Binary installers for the latest released version are available at the Python Package Index (PyPI).
You can install wdbibtex package via pip command.
pip install -U wdbibtex
- Windows OS, for pywin32
- pywin32>=302, for operating MS Word
- regex>=2022.6.2, for converting LaTeX string to text
- TeX Live 2022, for building LaTeX file
Let target Word file name be file.docx
.
- Confirm you can build LaTeX project with basic
latex->bibtex->latex->latex
scheme. (This is out of scope of this project.) - Copy your
.bib
and.bst
to same directory withfile.docx
. - Write your docx file with LaTeX citations keys of
\cite{key}
and\thebibliography
label. - On the shell, change directory to the
file.docx
's directory. - Execute:
$ python -m wdbibtex file.docx
- If wdbibtex works correctly, you can see
file_bib.docx
. LaTeX citation keys of\cite{key}
and\thebibliography
will be converted to [1] and [1] A. Name, "Title", Journal, vol... (for example).
The official documentation is hosted on GitHub Pages: https://ehki.github.io/WdBibTeX
WdBibTeX is distributed undert MIT License.