GuidesApril 29, 20266 min read

How to Create Numeric, Author-Year, or Footnote Citations in LaTeX

Set up any citation style in LaTeX — numeric [1], author-year (Smith 2024), or footnote citations — with natbib and biblatex examples.

citationsnumericauthor-yearfootnotestyles

Different journals and disciplines require different citation styles. Here's how to set up the three most common styles in LaTeX.

1. Numeric style [1, 2, 3]

With natbib

\\usepackage[numbers]{natbib}
\\bibliographystyle{unsrtnat}  % unsorted = order of appearance

With biblatex

\\usepackage[style=numeric, sorting=none]{biblatex}
\\addbibresource{refs.bib}

2. Author-year style (Smith, 2024)

With natbib

\\usepackage{natbib}
\\bibliographystyle{plainnat}
% Use \\citep{key} for parenthetical: (Smith, 2024)
% Use \\citet{key} for textual: Smith (2024)

With biblatex

\\usepackage[style=authoryear]{biblatex}
\\addbibresource{refs.bib}
% \\parencite{key} → (Smith 2024)
% \\textcite{key} → Smith (2024)

3. Footnote style

Footnote citations are common in humanities and law. biblatex handles this natively:

\\usepackage[style=verbose]{biblatex}
% or for Chicago-style footnotes:
\\usepackage[style=chicago-authordate]{biblatex}

\\autocite{key}  % automatically creates a footnote

Quick reference

Stylenatbib optionbiblatex style
Numeric [1]numbersnumeric
Author-yeardefaultauthoryear
FootnoteManualverbose / footnote-dw
Alphabetic [Smi24]N/Aalphabetic

Bibby AI auto-detects your citation style and formats references accordingly. Try free.

Try a LaTeX Editor Built for Researchers

AI-powered writing, smart citations, no compile timeouts. Join 5,000+ researchers using Bibby AI.

Start Writing Free
How to Create Numeric, Author-Year, or Footnote Citations in LaTeX | Bibby AI Blog