File size: 563 Bytes
7fec1b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# BibTeX
>[BibTeX](https://www.ctan.org/pkg/bibtex) is a file format and reference management system commonly used in conjunction with `LaTeX` typesetting. It serves as a way to organize and store bibliographic information for academic and research documents.
## Installation and Setup
We have to install the `bibtexparser` and `pymupdf` packages.
```bash
pip install bibtexparser pymupdf
```
## Document loader
See a [usage example](/docs/integrations/document_loaders/bibtex).
```python
from langchain_community.document_loaders import BibtexLoader
```
|