@hygull/bibtex
Version:
Get details about BibTeX (.bib) syntax, available ENTRY types and many more using Node APIs.
214 lines • 5.08 kB
JSON
{
"article": {
"description": "An article from a journal or magazine",
"requiredFields": [
"author",
"title",
"journal",
"year"
],
"optionalFields": [
"volume",
"number",
"pages",
"month",
"note"
]
},
"book": {
"description": "A book with an explicit publisher",
"requiredFields": [
"author or editor",
"title",
"publisher",
"year"
],
"optionalFields": [
"volume or number",
"series",
"address",
"edition",
"month",
"note"
]
},
"booklet": {
"description": "A work that is printed and bound, but without a named publisher or sponsoring institution",
"requiredFields": [
"title"
],
"optionalFields": [
"author",
"howpublished",
"address",
"month",
"year",
"note"
]
},
"inbook": {
"description": "A part of a book, e.g., a chpater, section, or whatever and/or a range of pages",
"requiredFields": [
"author or editor",
"title",
"chapter and/or pages",
"publisher",
"year"
],
"optionalFields": [
"volume or number",
"series",
"type",
"address",
"edition",
"month",
"note"
]
},
"incollection": {
"description": "A part of a book having its own title",
"requiredFields": [
"author",
"title",
"booktitle",
"publisher",
"year"
],
"optionalFields": [
"editor",
"volume or number",
"series",
"type",
"chapter",
"pages",
"address",
"edition",
"month",
"note"
]
},
"inproceedings": {
"description": "An article in a conference proceedings",
"requiredFields": [
"author",
"title",
"booktitle",
"year"
],
"optionalFields": [
"editor",
"volume or number",
"series",
"pages",
"address",
"month",
"organization",
"publisher",
"note"
]
},
"manual": {
"description": "Technical documentation",
"requiredFields": [
"title"
],
"optionalFields": [
"author",
"organization",
"address",
"edition",
"month",
"year",
"note"
]
},
"mastersthesis": {
"description": "A master's thesis",
"requiredFields": [
"author",
"title",
"school",
"year"
],
"optionalFields": [
"type",
"address",
"month",
"note"
]
},
"misc": {
"description": "Use this type when nothing else fits. A warning will be issued if all optional fields are empty (i.e., the entire entry is empty or has only ignored fields)",
"requiredFields": [
"none"
],
"optionalFields": [
"author",
"title",
"howpublished",
"month",
"year",
"note"
]
},
"phdthesis": {
"description": "A Ph.D. thesis",
"requiredFields": [
"author",
"title",
"school",
"year"
],
"optionalFields": [
"type",
"address",
"month",
"note"
]
},
"proceedings": {
"description": "Conference proceedings",
"requiredFields": [
"title",
"year"
],
"optionalFields": [
"editor",
"volume or number",
"series",
"address",
"publisher",
"note",
"month",
"organization"
]
},
"techreport": {
"description": "A report published by a school or other institution, usually numbered within a series",
"requiredFields": [
"author",
"title",
"institution",
"year"
],
"optionalFields": [
"type",
"number",
"address",
"month",
"note"
]
},
"unpublished": {
"description": "A document having an author and title, but not formally published",
"requiredFields": [
"author",
"title",
"note"
],
"optionalFields": [
"month",
"year"
]
}
}