I'm trying to use biblatex verbose-inote, in part to get subsequent footnote references to refer back to the first note by saying "see n.". This works fine, except for cases when I'm using shorthand, which makes this feature go away. Is it possible to have the "see n." in combination with `shorthand'?
MWE:
\documentclass{article}
\usepackage[
backend=biber,
style=verbose-inote,
]{biblatex}
\begin{filecontents}{\jobname.bib}
@misc{foo1,
shorthand = {REF1},
author = {Doe, John},
title = {{John's book}},
}
@misc{foo2,
author = {Doe, Jane},
title = {{Jane's book}},
}
\end{filecontents}
\bibliography{\jobname.bib}
\begin{document}
Test1.\autocite{foo1}
Test1.\autocite{foo2}
Test1.\autocite{foo1}
Test1.\autocite{foo2}
\end{document}
This generates the following footnotes:

Notes 1, 2, and 4 are ok. But note 3 needs a "see n. 1" added.
