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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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