Metadata-Version: 2.1
Name: bib2tex
Version: 0.1.2
Summary: Create a subset of BibTeX entries based on an author's name (and entrytype), which is coverted into a LaTeX list.
Home-page: https://codeberg.org/Cs137/bib2tex
License: MIT
Keywords: BibTeX,LaTeX
Author: Christian Schreinemachers (Cs137)
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.1.7,<9.0.0)
Project-URL: Repository, https://codeberg.org/Cs137/bib2tex
Description-Content-Type: text/markdown

# bib2tex

A Python package to create a subset of BibTeX entries based on an author's name
(and an entrytype). The result is converted into a LaTeX list in which the author
can get highlighted with an underline. The list is sorted from the newest to the
oldest entry.

The motivation for writing this package was to create a tool that generates lists
with own publications for e.g. a curriculum vitae.

## Installation

You can install `bib2tex` from the [*Python Package Index*](https://pypi.org/project/bib2tex/) using `pip`:

```bash
pip install bib2tex
```

## Usage

### CLI

The CLI can be called with the command `bib2tex` if the package is installed. Run
it with the `--help` option to get the following usage information and a list of
all options:

```text
Usage: bib2tex [OPTIONS]

  CLI to filter and convert BibTeX entries to a LaTeX list.

  This command allows users to filter BibTeX entries by an author's name (and
  entrytype). The resulting subset is coverted into a LaTeX list. The defined
  author can be highlighted with an underline in the result. By default, the
  list is sorted from the newest to the oldest entry.

Options:
  -i, --bibtex-path PATH    (input) Path to the BibTeX file.  [default:
                            /path/defined/as/BIB/env/var; required]
  -o, --latex-path PATH     (output) Path to the LaTeX file  [required]
  -a, --author TEXT         Author name for filtering entries.  [required]
  -e, --entrytype TEXT      BibTeX entry type for filtering.
  -f, --format-scheme TEXT  Format scheme for LaTeX item.
  -r, --reverse             Sort entries from old to new.
  -u, --underline           Underline the author in LaTeX.
  -v, --verbose             Print verbose output.
  --item TEXT               Options for LaTeX item, e.g. '[--]'.
  --itemize TEXT            Options for LaTeX itemze.
  -h, --help                Show this message and exit.

  by Cs137, 2023 - Development on Codeberg: https://codeberg.org/Cs137/bib2tex
```

#### Example

In order to obtain all articles for the author *MyName* from the default BibTeX
file and write them into the file `my_articles.tex`, call the CLI as follows:

```bash
bib2tex -a MyName -e article -o my_articles.tex -v
```

The example above assumes that the `--bibtex-path` is defined via the environment
variable `BIB`. Provide a path to it if the variable is undefined (`-i path/to/example.bib`).
If no `--latex-path | -o` is provided, a prompt will request it from the user.

### Configuration

The path to the default BibTeX file can be defined with the environment variable `BIB`.

## Dependencies

- [click](https://pypi.org/project/click/) (to provide the CLI)

## Notes

- Check [`.bib2tex.converter:to_latex`](./bib2tex/converter.py) for conversion without CLI.
  (Make click/CLI optional ?)

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

