Documentation/Citations & Bibliography/How to Cite a Source Within a Footnote in LaTeX
Citations & Bibliography

How to Cite a Source Within a Footnote in LaTeX

Placing a citation inside a footnote is common in humanities and social science writing. However, LaTeX can behave unexpectedly when you nest citation commands within footnotes — especially with footnote-based citation styles. This guide covers the correct approaches for both natbib and biblatex. Bibby AI handles footnote citations cleanly and shows them in the preview exactly as they'll appear in the final PDF.

Cite Inside a Footnote with natbib

With natbib using numeric or author-year styles, you can place \citep or \citet inside a \footnote command:

\usepackage[authoryear, round]{natbib}
\bibliographystyle{plainnat}

\begin{document}

% Simple citation inside a footnote — works fine with natbib:
This claim is debated in the literature.\footnote{%
    See \citet{smith2024} for a comprehensive review,
    and \citet{jones2023} for a contrasting view.
    Earlier work by \citet{brown2020} first raised this issue.
}

% Multiple citations in a footnote:
The methodology has evolved.\footnote{%
    For the original formulation, see \citep{original1990}.
    Recent extensions include \citep{extension2022, extension2023}.
}

% Combining text and citation:
Results vary across studies.\footnote{%
    \citet{smith2024} report 95\% accuracy, while
    \citet{jones2023} find only 87\% under different conditions.
    See also \citep{meta-analysis2024} for a meta-analysis.
}

\bibliography{references}
\end{document}

Cite Inside a Footnote with biblatex

biblatex provides dedicated commands for footnote citations. Use \footcite for automatic footnoting, or place \parencite inside \footnote for more control:

\usepackage[backend=biber, style=authoryear]{biblatex}
\addbibresource{references.bib}

\begin{document}

% Method 1: \footcite — creates a footnote WITH the citation automatically
This is well-established.\footcite{smith2024}
% Output: Text.¹   ¹Smith, 2024.

% Method 2: Manual footnote with citation inside
This is debated.\footnote{%
    See \textcite{smith2024} for evidence in favor,
    and \textcite{jones2023} for the opposing view.
}

% Method 3: Multiple footcites
Results are mixed.\footcites{smith2024}{jones2023}{lee2022}
% Output: Text.¹   ¹Smith, 2024; Jones, 2023; Lee, 2022.

% Method 4: footcite with pre/post notes
The theory is well-supported.\footcite[see][pp.~12--15]{smith2024}
% Output: Text.¹   ¹See Smith, 2024, pp. 12–15.

\printbibliography
\end{document}

Avoid the Nested Footnote Problem

If you're already using a footnote-based citation style (like verbose or chicago-notes), placing \footcite inside \footnote creates a nested footnote — which LaTeX cannot handle. Here's the fix:

% PROBLEM: Nested footnotes with verbose/footnote citation style
\usepackage[backend=biber, style=verbose]{biblatex}
% With this style, \autocite and \cite create footnotes.
% If you put them inside a \footnote, you get a nested footnote error.

% BAD — will cause an error or strange output:
% \footnote{See \autocite{smith2024} for details.}

% SOLUTION 1: Use \parencite or \textcite inside footnotes
% These create INLINE citations, not footnotes:
\footnote{See \parencite{smith2024} for details.}
% Output: ¹See (Smith, 2024) for details.

\footnote{As \textcite{smith2024} argues, the method is sound.}
% Output: ¹As Smith (2024) argues, the method is sound.

% SOLUTION 2: Use \footcitetext instead of \footcite
% This adds the citation text to the footnote without creating a new one:
Some text here.\footnotemark
\footcitetext{smith2024}

% SOLUTION 3: Use the \smartcite command
% It automatically detects if it's inside a footnote and adjusts:
\footnote{See \smartcite{smith2024} for details.}
% Inside a footnote: produces inline citation
% Outside a footnote: produces footnote citation

💡 Tips

  • Use \smartcite in biblatex — it auto-detects whether it's in a footnote and adjusts its behavior accordingly.
  • Never use \footcite inside a \footnote — it creates a nested footnote that LaTeX can't handle.
  • Add a % at the end of \footnote{% to prevent unwanted whitespace at the start of the footnote text.
  • Bibby AI warns you about nested footnote issues in real time, preventing compilation errors before they happen.

Try This in Bibby AI

Write LaTeX faster with AI auto-complete and instant compilation.

Start Writing Free

Related Tutorials

How to Cite a Source Within a Footnote in LaTeX | Bibby AI