Is there a simple way to get citations to appear as footnotes rather than as a section at the end of the article? Preferably using bibtex.
Asked
Active
Viewed 4,779 times
4
1 Answers
3
As a BibTeX based solution, you can use the footbib package. As instructed in the manual, the compilation sequence is
latexdocbibtexdoc.fblatexdoclatexdoc
where doc is the name of your LaTeX document without the file extension. Of course, latex can be replaced with pdflatex, lualatex, or xelatex. The document states that further compilation rounds may be necessary for the result to stabilize. On the other hand, sometimes step 4 is not needed, as is the case with the following example.

\documentclass{article}
\usepackage[paperwidth=16cm,paperheight=6.5cm]{geometry}
\usepackage{footbib}
\usepackage{lipsum}
\begin{document}
Citing a book~\footcite{book-full}.
\lipsum[1]
Another citation here~\footcite{whole-set}.
\footbibliographystyle{unsrt}
\footbibliography{xampl}
\end{document}
mvkorpel
- 1,598
-
Thanks for pointing out the need for the .fb extension. It still does not work together with the amsrefs package, it seems. – Bjørn Kjos-Hanssen Sep 11 '14 at 14:59
-
I get this error:
The output routine of LaTeX changed since the current version of \`footbib'.\MessageBreak Since `footbib' patches this routine, using it may produce unexpected\MessageBreak results. Send a mail to \space Eric.Domenjoud@loria.fr \space to get a new version.\MessageBreak\MessageBreak Type \space X <return> \space to quit or cross your fingers and just type <return>– Marten Mar 17 '23 at 16:54
biblatex). – Werner Sep 11 '14 at 04:50