BibTeX, biblatex and biber ⇒ footbib | Mixing Footnotes and Citations in Footer
footbib | Mixing Footnotes and Citations in Footer
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.
- Attachments
-
- footbib-footnote.png (10.05 KiB) Viewed 8572 times
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
footbib | Mixing Footnotes and Citations in Footer
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}