Skip to main content
BibLaTeX is the recommended bibliography system for new LaTeX projects.

Minimal Setup

biblatex-minimal.tex
\documentclass{article}
\usepackage[
  backend=biber,
  style=authoryear,
  sorting=nyt
]{biblatex}
\addbibresource{references.bib}

\begin{document}
Recent work \parencite{smith2024} extends prior results.
\printbibliography
\end{document}

Common Commands

  • \textcite{key} for narrative citations.
  • \parencite{key} for parenthetical citations.
  • \autocite{key} when style controls output.

Build Sequence

  1. LaTeX
  2. Biber
  3. LaTeX
  4. LaTeX