BibTeX — Multi Reference SAMPLE
Two-entry SAMPLE BibTeX file for bibliography parsers (not a claim on the real works beyond citation shape).
@book{knuthSAMPLE,
author = {Donald E. Knuth},
title = {The Art of Computer Programming (SAMPLE cite)},
publisher = {Addison-Wesley},
year = {1997},
note = {Citation text only — SAMPLE fixture}
}
@inproceedings{shannonSAMPLE,
author = {C. E. Shannon},
title = {A Mathematical Theory of Communication (SAMPLE)},
booktitle = {Bell System Technical Journal},
year = {1948}
}
Specifications
- Entries
- 2
- Suite
- wave-e
What is a .bib file?
BibTeX (.bib) is a plain-text bibliography database used with LaTeX and reference managers. Each entry has a type (@article, @book, @inproceedings), a citation key, and tagged fields like author, title, year, and journal. It is the standard citation format in academic writing.
How to use this file
Use an example .bib file to test BibTeX and BibLaTeX parsers, reference managers (Zotero, Mendeley, JabRef), and citation-format converters (for example BibTeX to RIS or CSL-JSON).
How to use this file for testing
“BibTeX — Multi Reference SAMPLE” is a deterministic Novus Examples fixture for Editor testing. Text-based files you can open, edit, and download directly in the browser editor.
Documented properties for this file: 2 entries. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.
Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.
Document fixtures list their internal structure (pages, fields, tracked changes, embedded objects) in the spec table. Test extractors, converters, and OCR against that known structure, and compare searchable↔scanned or format-twin companions when present.
Code examples
import bibtexparser # pip install bibtexparser
lib = bibtexparser.parse_file("multi-refs.bib")
for e in lib.entries[:5]:
print(e.key, "-", e.fields_dict.get("title"))Related files
- bibBibTeX — Digital Filters Primer (.bib)Companion BibTeX file for the filters LaTeX article — fictional SAMPLE citation.

- bibBibTeX — Notes on Information Entropy (.bib)Companion BibTeX file for the entropy LaTeX article — fictional SAMPLE citation.

- texLaTeX Article — Digital Filters Primer (.tex)SAMPLE LaTeX article “Digital Filters Primer” with abstract, equation, and \cite to a twin .bib.

- texLaTeX Article — Notes on Information Entropy (.tex)SAMPLE LaTeX article “Notes on Information Entropy” with abstract, equation, and \cite to a twin .bib.

- adocAsciiDoc Guide (ADOC source)An AsciiDoc getting-started guide with source blocks, an admonition, and a table — for testing AsciiDoc renderers (Asciidoctor), editors, and conversion to HTML/PDF.

- assASS Subtitles (Advanced SSA)An Advanced SubStation Alpha (.ass) subtitle with a styles section and three timed Dialogue events — the styled format libass renders — carrying the same captions as the SRT/VTT twins.

Generated by generation/docs_wave_e.py. Free for any use, no attribution required — license.