Metadata-Version: 2.1
Name: wdbibtex
Version: 0.2.1
Summary: WdBibTeX is a BibTeX toolkit for MS Word.
Home-page: http://pypi.python.org/pypi/wdbibtex/
Author: Haruki EJIRI
Author-email: 0y35.ejiri.vmqewyhw@gmail.com
License: MIT
Project-URL: Document, https://ehki.github.io/WdBibTeX
Project-URL: Source, https://github.com/ehki/WdBibTeX
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft
Classifier: Topic :: Text Editors :: Documentation
Classifier: Topic :: Text Editors :: Word Processors
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# WdBibTeX

WdBibTeX is a BibTeX toolkit for MS Word.



## Installation



Binary installers for the latest released version are available at the [Python Package Index (PyPI)](https://pypi.org/project/wdbibtex).



You can install wdbibtex package via pip command.



```sh

pip install -U wdbibtex

```



## Dependencies



- Windows OS, for pywin32

- pywin32>=302, for operating MS Word

- TeX Live 2021, for building LaTeX file.



## Usage



Let target Word file name be `file.docx`.



0. Confirm you can build LaTeX project with basic `latex->bibtex->latex->latex` scheme. (This is out of scope of this project.)

1. Copy your `.bib` and `.bst` to same directory with `file.docx`.

2. Write your docx file with LaTeX citations keys of `\cite{key}` and `\thebibliography` label.

3. On the shell, change directory to the `file.docx`'s directory.

4. Execute:

```sh

$ python -m wdbibtex file.docx

```

5. 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).



## Documentation

The official documentation is hosted on GitHub Pages: https://ehki.github.io/WdBibTeX



## License

WdBibTeX is distributed undert [MIT License](https://github.com/ehki/WdBibTeX/blob/bdf05337ae3f0659b2cca09986facd9aa7ad8a06/LICENSE).



