# Bibliography Revealer can manage citations and an automatic bibliography from a BibTeX file. ## Setup Point the presentation at a `.bib` file in the settings: ``` > bibtex: biblio.bib ``` Bibliography support uses the `bibtexparser` library when it is available; it is installed automatically with the CLI (see [Installation](installation.md)). When Revealer is run from a lightweight Python environment without that dependency, a minimal built-in BibTeX reader is used so common article entries still resolve. ## Citing references Cite a reference on a slide with `> cite:` (repeatable), using the BibTeX entry key: ``` === Results > cite: smith2020 > cite: doe2019 Our findings confirm earlier work . ``` * A **short description** of each newly cited reference is added to the slide footer. * The `` marker inserts superscript numbers anywhere in the slide text. ## Bibliography slides Add a dedicated bibliography section that lists every cited reference with full details: ``` >>> biblio ``` The references are numbered in citation order and paginated. Control the layout with: | Command | Description | | --- | --- | | `> title:` *text* | Title of the bibliography slides. | | `> maxRefsPerPage:` *n* | Maximum references per slide (default: 5). Set in the settings part. | ```{note} Entries without a `journal` field (books, preprints, theses…) are handled gracefully and no longer break the build. ```