Hello,
I'm writing a document where I'd like to have citations, preferably as footnotes. So naturally I thought that the footbib package could work well. However I would also like to have footnotes, but mixing these two gets pretty ugly. The appearance can be seen in the attachment.
Is there some way to have both footnote-citations and "normal" footnotes somehow? Maybe I should drop using footbib and hack together some command that will insert a citation in a footnote?
Thank you for your replies.
BibTeX, biblatex and biber ⇒ footbib | Mixing Footnotes and Citations in Footer
footbib | Mixing Footnotes and Citations in Footer
- Attachments
-
- footbib-footnote.png (10.05 KiB) Viewed 8477 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

footbib | Mixing Footnotes and Citations in Footer
Would switching to biblatex be an option for you?
Regards
Code: Select all
\documentclass{article}
\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Text\footnote{A footnote} more text\footfullcite{companion} and even more text\footcite{knuth:ct:a}.
\printbibliography
\end{document}
site moderator & package author
Re: footbib | Mixing Footnotes and Citations in Footer
Thanks for the suggestion Clemens, biblatex seems to work quite well.