Generalbiblatex | Footnote Citations and Numbers in Bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
User avatar
Amazon
Posts: 9
Joined: Sun May 13, 2012 5:06 pm

biblatex | Footnote Citations and Numbers in Bibliography

Post by Amazon »

Hello,

I'm writing a document where I'm using biblatex (with BibTeX as back-end). In my document I would like to have citations as footnotes, "normal" footnotes containing text and at the end a consolidated bibliography of the references my document contains.

There is only one, quite small, issue. I would like the final bibliography to also display the footnote number associated with the citation. How do I accomplish that?

The references at the end should then appear as:
<footnote number> <author> <title> <year>
1 Author1. Book title1. Year1.
3 Author2. Book title2. Year2.
Here's a simple example of my problem:

Code: Select all

\documentclass[a4paper,12pt]{article}

\usepackage[style=verbose]{biblatex}
\addbibresource{test}

\usepackage{filecontents}

\begin{filecontents}{test.bib}
    @book{Foo,
        title={Book title1},
        author={Author1},
        year= {Year1},
    }
    @book{Bar,
        title={Book title2},
        author={Author2},
        year= {Year2},
    }
\end{filecontents}
\addbibresource{test.bib}

\begin{document}
 
This is some text\footcite{Foo}, with\footnote{"Normal" footnotes also appear.} footnotes.\footcite{Bar}
\newpage

How can I make the footnote number associated with the reference be printed along with the reference? (First entry should be numbered 1 and second numbered 3.)

\printbibliography

\end{document}
The resulting output is attached.


Thank you for your help!
Attachments
test.pdf
The resulting output.
(69.19 KiB) Downloaded 763 times
Last edited by localghost on Sun Sep 23, 2012 1:13 pm, 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.

Amazon
Posts: 9
Joined: Sun May 13, 2012 5:06 pm

Re: biblatex | Footnote Citations and Numbers in Bibliograph

Post by Amazon »

The issue has been adequately resolved at StackExchange.

http://tex.stackexchange.com/questions/ ... bliography
Post Reply