BibTeX, biblatex and bibermultiple references in one footcite

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
CJFugate
Posts: 12
Joined: Thu Aug 23, 2012 11:47 pm

multiple references in one footcite

Post by CJFugate »

I'm using Biblatex to put my references in footnotes. when I would use \cite{} to insert references, I could just separate the references with a comma to put in multiple references -

\cite{ref1, ref2} would result in
blah blah blah [1,2]

I tried this with \footcite, but it doesn't seem to work. Is there an easy way to get this to work?
Last edited by cgnieder on Thu Aug 08, 2013 9:32 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

multiple references in one footcite

Post by cgnieder »

You probably want \supercite:

Code: Select all

\documentclass{article}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
foo\supercite{knuth:ct:a,companion}
\printbibliography
\end{document}
or \autocite

Code: Select all

\documentclass{article}
\usepackage[autocite=superscript]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
foo\autocite{knuth:ct:a,companion}
\printbibliography
\end{document}
Regards
site moderator & package author
Post Reply