'철학-현대' 인용 스타일 설정: 첫 번째 저자의 이름을 표시하고 중복된 첫 번째 저자에 대해 'a' 또는 'b'를 추가하시겠습니까?

'철학-현대' 인용 스타일 설정: 첫 번째 저자의 이름을 표시하고 중복된 첫 번째 저자에 대해 'a' 또는 'b'를 추가하시겠습니까?

저는 현재 석사 논문을 작성 중이고 Latex를 처음 접합니다. 인용 스타일 "philosophy classic"의 출력을 변경하고 싶습니다. 첫 번째 저자는 동일하지만 연도와 두 번째 저자가 다른 두 개의 논문이 있는 경우 다음 텍스트가 표시됩니다.

(저자 A 및 작성자 B, 2019; 작성자 A 및 작성자 C, 2021)

대신에 저는 첫 번째 저자만을 사용하고 싶습니다. 연도가 다르기 때문에 여전히 명확한 구분이 가능하기 때문입니다. 나는 그것이 다음과 같이 나타나기를 원합니다 :

(저자 A, 2019; 작성자 A, 2021)

그러나 소문자를 추가하고 싶은 두 번째 시나리오가 있습니다. 같은 해에 출판된 동일한 첫 번째 저자의 두 논문이 있는 경우 다음과 같이 표시하고 싶습니다.

(저자 A, 2019a 및 작성자 A, 2019b)

두 번째 저자의 이름에 따라 알파벳의 첫 번째 저자는 소문자 a를 사용하고, 알파벳의 두 번째 저자가 있는 논문의 경우 b를 사용합니다.

이것은 내 예제 코드입니다.

\documentclass{article}

\usepackage[style = philosophy-classic, sorting = nyt, backend = biber, scauthors=all, dashed = FALSE]{biblatex} 

\renewcommand*{\nameyeardelim}{\addcomma\space}

\DeclareNameAlias{author}{last-first}
\DeclareNameAlias{editor}{last-first}

\addbibresource{bibfile.bib}

\DefineBibliographyStrings{ngerman}{
    andothers = {{et\,al\adddot}},
}

\begin{document}
    Here I would like to cite two papers written by the same author, but published in different years \parencite{paper1, paper2}.
    
    Here I would like to cite two papers written by the same author, but published in the same year \parencite{paper1, paper3}.
    
    \printbibliography
\end{document}

그리고 이것은 나의 예시 bibfile입니다:

@article{paper1,
    title={Title of Paper 1},
    author={AuthorA, A. and AuthorB, B.},
    journal={Journal},
    volume={1},
    number={2},
    pages={5--10},
    year={2019}
}

@article{paper2,
    title={Title of Paper 2},
    author={AuthorA, A. and AuthorC, C.},
    journal={Journal},
    volume={2},
    number={3},
    pages={2--11},
    year={2021}
}

@article{paper3,
    title={Title of Paper 3},
    author={AuthorA, A. and AuthorD, D.},
    journal={Journal},
    volume={3},
    number={2},
    pages={11--30},
    year={2019}
}

도움을 주시면 정말 감사하겠습니다!

관련 정보