Referências sob o mesmo curta-autor

Referências sob o mesmo curta-autor

Quero fazer algo assim, onde as referências com o mesmo autor curto, mas com títulos diferentes, são ordenadas desta forma:insira a descrição da imagem aqui

este é um MWE, estou usando filosofia detalhada como bibstyle:

\documentclass[a4paper,12pt]{article}

\usepackage{polyglossia} 
            \setmainlanguage[babelshorthands=true]{italian}
            \setotherlanguages{latin,greek,english}
            \setkeys{greek}{variant=polytonic}
            \setkeys{latin}{variant=modern}

  \usepackage[%
            bibstyle=philosophy-verbose,%
            citestyle=authoryear,%
            autolang=other,
            backend=biber,%
            classical = true,%
            scauthors = bibcite,%
            dashed = true,%trattino al posto del nome dell'autore nelle entrate multiple
            volnumformat = parens,%
            volumeformat = Roman,%
            firstinits=true,%
            volnumformat=strings,%
            volumeformat=romansc,%
            sorting=nyt,%
            relatedformat=brackets,%
            editionformat=superscript,
            indexing]{biblatex}
            
            \usepackage{polyglossia} 
            \setmainlanguage[babelshorthands=true]{italian}
            \setotherlanguages{latin,greek,english}
            \setkeys{greek}{variant=polytonic}
            \setkeys{latin}{variant=modern}
            
\begin{filecontents*}{\jobname.bib}
@book{pipi,
keywords = {edizione},
title = {Le Pitiche},
author = {Pindaro},
editor = {Bruno Gentili and Paola Angela Bernardini and Ettore Cingano and Pietro Giannini},
address = {Milano},
year = {1995},
shorthand = {Pi.}
}

@book{piol,
keywords = {edizione},
title = {Le Olimpiche},
author = {Pindaro},
editor = {Bruno Gentili and Paola Angela Bernardini and Ettore Cingano and Pietro Giannini},
address = {Milano},
year = {1995},
shorthand = {Pi.}
}
\end{filecontents*}

\addbibresource{\jobname.bib}

\begin{document}
\nocite{*}
\printbiblist{shorthand}
\end{document}

informação relacionada