This question relates to one of my earlier questions: biblatex footnote references
At the start of my thesis I have an acknowledgements page. This page contains some references, but it is my preference to have these listed in a short bibliography at the bottom of the same page as a footer rather than bundle it all up at the end of the thesis. I'm using the numeric [#] style references.
I had done my references with natbib, using footbib to handle the footnote citations. The command for placing them is \footcite{<key>}. I'm now trying to migrate over to biblatex. biblatex also has a \footcite{<key>} command, but it behaves differently, placing a [#] in the foot bibliography, (and nothing else). I'm trying to find a sensible way to implement the functionality I want and have made some progress:
\documentclass{book}
\usepackage[sorting=none,
style=chem-rsc,
%style=footnote-dw
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{theRefs.bib}
@MISC{MatStudio2005,
author = {{Accelrys Software Inc.}},
title = {Material Studio 4.0},
year = {2005},
owner = {Administrator},
timestamp = {2010.07.02}
}
@ARTICLE{Momma2008,
author = {Momma, Koichi and Izumi, Fujio},
title = {VESTA: a three-dimensional visualization system for electronic and
structural analysis},
journal = {Journal of Applied Crystallography},
year = {2008},
volume = {41},
pages = {653-658},
number = {3},
month = {6},
}
\end{filecontents}
\addbibresource{theRefs.bib}
\newcommand{\footnoteNS}[1]{{\let\thefootnote\relax\footnote{#1}}}
\begin{document}
\chapter*{acknowledgements}
\begin{refsection}
Things I would like to acknowledge \cite{Momma2008,MatStudio2005}
\renewcommand{\bibfont}{\normalfont\footnotesize}
\footnoteNS{\vspace{-\baselineskip}\printbibliography[heading=none]}
% \footnoteNS{\printbibliography[heading=none]}
\end{refsection}
\end{document}
This kind of works, but is rather horribly inelegant. Particularly if you look at the \vspace that I had to add to remove a space between the footer and the horizontal rule. Also, though it looks acceptable, the space between rule and bibliography is still not quite right (should be less).
Can any one suggest ways forwards with this, giving consideration that I wish the references in the rest of the document operate with the current style but independently of the Acknowledgement (as if it wasn't there). This consideration is dealt with in the working example, but I could easily imagine suggestions that affect the rest of the document.
Sorry if some aspect of this is not clear. I will try to amend if I have written confusing things.


labelnumbers([#]) used in the rest of the thesis, or can they be independent? – Audrey Sep 24 '11 at 21:24\footnote{<some text>}elsewhere in the thesis. I would like this footnote to have no symbol, other than the numbers in the bibliography itself. I'd like it to be completely independent of the numbering used for the rest of the footnotes. The\footnoteNS{}command that I created, removes the symbols, I'm not sure if it removes the footnote counter as well. I guess I can look into this. – aghsmith Sep 24 '11 at 22:09