I want to use biblatex so that I can use \footcite in a normal text, which generates a footnote that has a bit of information in it.
The rest of the information should be in the section generated by printbibliography.
The problem is that the numbers next to the reference entries don't match the numbering of the footnotes, which is extremely confusing.
So in my working copy the reference number in the printbibliography section should be: 3 for the "Darnassus et al" entry and 1 for the "The Bad Wolf" entry.
How can I do this? I know there would be trouble when referencing to the same entry, but this could be solved by just reusing the same footnote number.
If this looks like a very bad idea, please tell me. It's my first time using a bibliography, so I might be misconceived on how to use it.
Working copy:
\documentclass{article}
\usepackage[style=authortitle-ibid,bibstyle=numeric]{biblatex}
\usepackage[dutch]{babel}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{Darn,
title={A strange scribling},
author={Dr. Darnassus and others},
year= {1820},
}
@book{DKB,
title={Three little pigs},
author={The bad wolf},
year={1999},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
An overly\footcite[][33]{DKB} footnoted\footnote{a normal footnote} sentence\footcite{Darn}
\newpage
\printbibliography
\end{document}
3 Darnassus et al., A strange scribling.this entry should be numbered in the bibliography like in the footnote. If you want to do so I think it's a really bad idea. How do you want to handle it, when you have more than one work in a footnote like this:3 Darnassus et al., A strange scribling; Testauthor, Another Work. So both entries would get the same number which would be really confusing. – Thorsten Apr 26 '11 at 13:47\footnotemark/\footnotetext– Aaron Apr 26 '11 at 16:12