Biber 참조 순서

Biber 참조 순서

다른 참고문헌 중에서 나는 참고문헌에서 같은 연도, 같은 저자의 두 참고문헌을 다루어야 하지만, 둘 사이에는 연대순이 있다는 점을 지적하고 싶습니다. Biber는 논문 제목을 기준으로 두 참고문헌을 정렬하는데 불행하게도 그 반대 순서를 제공합니다. sorting=nyt를 설정하고 SORTYEAR={2024-1} 및 SORTYEAR={2024-2}를 추가하려고 시도했지만 작동하지 않았습니다. 내가 어떻게 할 수 있니?

\begin{filecontents}[overwrite]{testbib.bib}
@article {RG2024a,
  AUTHOR = {Durand, R. and Charles, G.},
  TITLE = {Note on a famous theorem},
  JOURNAL = {Foo},
  YEAR = {2024},
}


@article {RG2024b,
  AUTHOR = {Durand, R. and Charles, G.},
  TITLE = {Mysterious theorem},
  JOURNAL = {Bar},
  YEAR = {2024},
}
\end{filecontents}

\documentclass{article}
%
\usepackage[style=alphabetic]{biblatex}
\addbibresource{testbib.bib}

\begin{document} 
First there was \autocite{RG2024a}. Then came 
\autocite{RG2024b}.

\printbibliography
\end{document}

감사해요!

답변1

빠른 해킹: sorttitle필드를 사용하여 원하는 주문을 받으세요.

\begin{filecontents}[overwrite]{testbib.bib}
@article {RG2024a,
  AUTHOR = {Durand, R. and Charles, G.},
  TITLE = {Note on a famous theorem},
  JOURNAL = {Foo},
  YEAR = {2024},
  sorttitle={a},
}


@article {RG2024b,
  AUTHOR = {Durand, R. and Charles, G.},
  TITLE = {Mysterious theorem},
  JOURNAL = {Bar},
  YEAR = {2024},
  sorttitle={b},
}


\end{filecontents}

\documentclass{article}
%
\usepackage[style=alphabetic]{biblatex}
\addbibresource{testbib.bib}

\begin{document} 
First there was \autocite{RG2024a}. Then came 
\autocite{RG2024b}.

\printbibliography
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보