Skip to content

Basic Usage

Start with a small document that loads BibLaTeX and a bibliography source.

  • \usepackage[backend=biber,style=authoryear]{biblatex}
  • \addbibresource{references.bib}
  1. Add one entry in references.bib
  2. Cite it with \parencite{key}
  3. Print bibliography with \printbibliography
  • \parencite{key} for parenthetical citations
  • \textcite{key} for narrative citations

If citations show as ?, verify compile order and confirm the citation key exists in your bibliography source.

Place \printbibliography near the end of the document where references should appear.

Run: pdflatexbiberpdflatexpdflatex.

If your project uses CiteDrive-managed reference data, validate that keys and required fields match your local document expectations.

  • Confirm every in-text citation resolves to a real entry
  • Scan bibliography for duplicated or malformed author names
  • Rebuild once more before export to PDF

Avoid changing citation keys mid-draft unless necessary. If you do rename keys, update every in-text citation to keep references synchronized.