@hygull/bibtex
Version:
Get details about BibTeX (.bib) syntax, available ENTRY types and many more using Node APIs.
22 lines (21 loc) • 299 B
JavaScript
/*
Created: 14 Sep 2018, Fri
*/
module.exports = function getEntryTypes() {
return [
"article",
"book",
"booklet",
"conference",
"inbook",
"incollection",
"inproceedings",
"manual",
"mastersthesis",
"misc",
"phdthesis",
"proceedings",
"techreport",
"unpublished"
];
}