I need to use the features of biblatex's verbose citestyle but I don't want it to repeat the author's name in multiple citations by the same author (like the authortitle-comp option).
Currently, using the citestyle=verbose option, if I cite three works by "An Author" as:
\autocites{ANAuthor:1}{ANAuthor:2}{ANAuthor:3}
the output is: "A. N. Author. 'First work' etc [full entry]; A. N. Author. 'Second work' etc [full entry]; A. N. Author. 'Third work' etc [full entry]."
But I need to have the output: "A. N. Author. 'First work' etc [full entry]; 'Second work' etc [full entry]; 'Third work' etc [full entry]."
Is there any way to do this in the verbose style? That is, suppress the author field in multiple citations for subsequent works by the same author?
Grateful for any assistance!
Update clarification
The only way to achieve this, I think, is to make a custom biblatex citestyle. Looking at the verbose.cbx the relevant command is the the printing of the bibhypertarget, as in the commands for full and short citations:
\newbibmacro*{cite:full}{% printtext[bibhypertarget]{% \usedriver {\DeclareNameAlias{sortname}{default}} {\thefield{entrytype}}}% \usebibmacro{shorthandintro}} \newbibmacro*{cite:short}{% \printnames{labelname}% \setunit*{\addcomma\space}% \printtext[bibhyperlink]{% \printfield[citetitle]{labeltitle}}}
Does anyone know how to modify that to print the author field as blank when the same author appears previously in the same multicites command?
verbose-noteis not what I want. It doesn't solve the problem of multiple citations... I might consider implementing what it does do (ie refer back) but, that's another issue, I think... – MCS Jun 13 '11 at 13:07authortitle-compfeature withverbosestyle... – henrique Jun 18 '11 at 2:55