동일한 단편저자의 참고문헌

동일한 단편저자의 참고문헌

나는 다음과 같은 것을 만들고 싶습니다. 짧은 저자는 같지만 짧은 제목이 다른 참고 문헌을 다음과 같이 정렬합니다.여기에 이미지 설명을 입력하세요

이것은 MWE입니다. 저는 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}

관련 정보