Overview

Add a .bib bibliography and cite from it anywhere in your text.

Add a bibliography

Embed a .bib file, alone on its own line, where you want the reference list to appear (usually a "References" page):

![[refs.bib]]

Obsitex registers the file in the preamble and prints the list at that spot:

% added to the preamble:
\addbibresource{./bib/refs.bib}

% at the embed location:
\printbibliography

Cite in your text

A direct citation [@meier2020] and one with a page number [@meier2020, p.~14].

A paraphrase with a prefix [cf. @meier2020, p.~14].
A direct citation \cite{meier2020} and one with a page number \cite[p.~14]{meier2020}.

A paraphrase with a prefix \cite[cf.][p.~14]{meier2020}.

Block quotes with a source

A longer, word-for-word quotation with its citation is covered on Callouts & block quotes.

How it looks in the PDF

<aside> 📸

Screenshot needed: the compiled PDF showing an in-text citation and the generated reference list.

</aside>

Tips & pitfalls