I'm trying to figure out with biblatex how to have a dash instead of a ibidem when an author is repeated on the same page with \footcite. Here is what I have so far:
\documentclass[fleqn,10pt]{book}
\usepackage{csquotes}
\usepackage[style=verbose-trad2,backref=true]{biblatex}
\bibliography{mem}
\begin{document}
\section{Text}
some text\footcite[58]{report} some text\footcite[62]{report}
\end{document}
with: mem.bib as follows:
@book{report,
author = {Letter, Alphanumeric},
title = {On the importance of nice references},
institution = {typographic University},
year = {2011}}
I'm not happy with the Ibid. of the second call. How can I replace it by a dash?
thanks