Numeric vs Author-Year vs Footnote Citation Styles in LaTeX
The three main citation styles in academic writing are numeric [1], author-year (Smith, 2024), and footnote-based citations. Each is preferred by different disciplines and journals. This guide shows how to set up all three styles in LaTeX and helps you choose the right one for your paper. Bibby AI supports all citation styles and makes switching between them a one-line change.
Set Up Numeric Citations
Numeric citations use numbers like [1], [2, 3], or superscripts. They're common in engineering, computer science, and natural sciences (IEEE, ACM):
% NUMERIC with natbib:
\usepackage[numbers, sort&compress]{natbib}
\bibliographystyle{unsrtnat} % Or: IEEEtranN, plain
% Usage:
Smith~\citep{smith2024} showed that\ldots % [1]
As shown in~\citep{smith2024, jones2023} % [1, 2]
% NUMERIC with biblatex:
\usepackage[backend=biber, style=numeric-comp]{biblatex}
\addbibresource{references.bib}
% Usage:
Smith~\parencite{smith2024} showed that\ldots % [1]
% SUPERSCRIPT NUMERIC:
% natbib: \usepackage[super]{natbib}
% biblatex: \usepackage[style=numeric, autocite=superscript]{biblatex}
% Then use \autocite{smith2024} → produces superscript ¹Set Up Author-Year Citations
Author-year citations show the author's name and publication year. They're standard in social sciences, humanities, and life sciences (APA, Harvard, Chicago):
% AUTHOR-YEAR with natbib:
\usepackage[authoryear, round]{natbib}
\bibliographystyle{plainnat}
% Usage:
\citet{smith2024} % Smith et al. (2024)
\citep{smith2024} % (Smith et al., 2024)
\citep[see][]{smith2024} % (see Smith et al., 2024)
\citep{smith2024, jones2023} % (Smith et al., 2024; Jones, 2023)
% AUTHOR-YEAR with biblatex:
\usepackage[
backend=biber,
style=authoryear,
maxcitenames=2,
uniquelist=false
]{biblatex}
\addbibresource{references.bib}
% Usage:
\textcite{smith2024} % Smith et al. (2024)
\parencite{smith2024} % (Smith et al., 2024)
\parencite[see][]{smith2024} % (see Smith et al., 2024)
% APA STYLE specifically:
\usepackage[backend=biber, style=apa]{biblatex}
\DeclareLanguageMapping{english}{english-apa}Set Up Footnote Citations
Footnote citations place the full or abbreviated reference in a footnote. They're common in law, history, and some humanities journals:
% FOOTNOTE CITATIONS with biblatex (recommended — natbib has limited support):
\usepackage[
backend=biber,
style=verbose, % Full citation on first use, abbreviated after
autocite=footnote % \autocite automatically uses footnotes
]{biblatex}
\addbibresource{references.bib}
% Usage:
This has been widely studied.\footcite{smith2024}
% Produces footnote: ¹ Smith, John. "Deep Learning." JMLR, 2024.
% On subsequent citations, a short form is used:
Later work confirmed this.\footcite{smith2024}
% Produces footnote: ² Smith, "Deep Learning" (see n. 1).
% Using \autocite (behaves like \footcite with autocite=footnote):
The results are clear.\autocite{smith2024}
% CHICAGO NOTES style (popular in humanities):
\usepackage[
backend=biber,
style=chicago-notes % Requires biblatex-chicago package
]{biblatex}
\addbibresource{references.bib}
% Verbose-ibid style (uses "ibid." for consecutive same-source citations):
\usepackage[backend=biber, style=verbose-ibid]{biblatex}💡 Tips
- •Check your target journal's style guide before choosing — using the wrong citation style can lead to desk rejection.
- •Numeric is most compact; author-year gives readers immediate context; footnote keeps the main text cleanest.
- •With biblatex, switching between all three styles is a one-line change: just modify the style= option.
- •Bibby AI lets you preview different citation styles side by side so you can compare how they look in your document.
Try This in Bibby AI
Write LaTeX faster with AI auto-complete and instant compilation.
Start Writing Free