bibparser

A Rust crate for parsing BibTeχ and BibLaTeχ files.

As opposed to the biblatex crate, this crate does not try to interpret the content of fields. This crate resulted from the usecase that biblatex threw an error when math inline mode was not terminated before text was cut off.

Who should use it?

Anyone, how wants to retrieve data from a .bib file.

How does one use it?

Add this to your Cargo.toml: toml [dependencies] bibparser = "0.3.1"

Instantiate the parser and iterate over the items: ```rust use bibparser::Parser;

//let mut p = Parser::fromfile("source.bib")?; let mut p = Parser::fromstr(r#"@book{tolkien1937, author = {J. R. R. Tolkien}}"#)?; for result in p.iter() { let entry = result?; println!("type = {}", entry.kind); println!("id = {}", entry.id); for (name, data) in entry.fields.iter() { println!("\t{}\t= {}", name, data); } } ```

How does one run it?

This library comes with one example:

bash $ cargo run --example cli -- --input refs.bib --query-id "tolkien1937"

In this example, the library would read file refs.bib and then only print the entry with ID tolkien1937 to stdout.

Where is the source code?

On github.

What is the content's license?

MIT License

Changelog

Where can I ask you to fix a bug?

On github.

What are known bugs / limitations?