Problem
Using the biblatex package with the authortitle-dw style I'd like point from a footnote back to its first occurence -- where it has been cited as a whole due to the firstfull=true-option -- as shown in the following picture:

(of course not in red and not with another font :) )
MWE
\documentclass{article}
\usepackage[
style=authortitle-dw,
backend=biber,
autocite=footnote,
firstfull=true,
singletitle=true,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book {foo,
author = {Foo, Francis},
title = {All about Foo},
year = {2011},
location = {Footown},
}
@book {bar,
author = {Bar, Bernie},
title = {Barstory},
year = {2000},
location = {Barcity},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\textheight=150pt
\begin{document}
\autocite{bar}
\autocite{foo}
\autocite{bar}
\autocite{foo}
\end{document}
This produces the following output:


footnote-dw. – Marco Daniel Feb 05 '12 at 10:30authortitle-dwhas no option to set aseenote. So you have to redefine the cite-command. It's easier to usefootnote-dw;-) – Marco Daniel Feb 05 '12 at 10:40footnote-dwstyle because I always usedauthortitle-dwand it was perfect for my needs. – Thorsten Feb 05 '12 at 20:24