Skip to content

BIBSYSDEV/bibtex-generator

Repository files navigation

BibTeX generator

A simple, opinionated Typescript API for BibTeX Databases. More information.

const database = new BibTeXDatabase();
const article = new BibTeXEntry(BibTeXType.Article, {
    key: 'key0',
    author: 'My Author',
    title: 'My title',
    year: '2025',
    journal: 'Journal of Studies',
});
database.add(article);
console.log(database.toString());

Output:

@article{key0,
  author = {My Author},
  journal = {Journal of Studies},
  title = {My title},
  year = {2025}
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors