동일한 저자의 여러 논문에 대한 간략한 인용

동일한 저자의 여러 논문에 대한 간략한 인용

동일한(또는 유사한) 저자(예: Doe)의 여러 논문을 인용하는 경우외.) 나는 다음과 같은 출력을 얻습니다.

암사슴외.(1999), 미상외.(2002), 미상외.(2004)

그러나 나는 다음과 같은 컴팩트한 출력을 선호합니다.

암사슴외.(1999, 2002, 2004)

biblatex를 사용하여 이 동작을 어떻게 달성합니까? 나는 그에 따른 대답을 알고 있습니다.턱텍스그러나 이것이 biblatex에 어떻게 적용되어야 하는지는 알 수 없습니다.

MWE:

\documentclass[a4paper,11pt]{scrartcl}

\usepackage{hyperref}
\usepackage[natbib = true,
    style = authoryear,
    backend = biber,
    hyperref = true,
    giveninits = true, 
    maxbibnames = 8, maxcitenames = 2, 
    uniquename=false,         
    uniquelist = minyear,
    doi = false, url = false, isbn = false, eprint = false]
    {biblatex} %
\addbibresource{example.bib}

\begin{document}
    some text about \citet{Doe1999, Doe2002, Doe2004}, but the output should be Doe et al. (1999, 2002, 2004)

    \printbibliography
\end{document}

그리고 참고문헌:

@Article{Doe2002,
  author  = {John Doe and Albert Miller and Jack Frost and Gregor Smith},
  title   = {Paper 2},
  journal = {Journal of Best Research},
  year    = {2002},
}

@Article{Doe2004,
  author  = {John Doe and Jack Frost and Albert Miller},
  title   = {Paper 3},
  journal = {Journal of Cool Research},
  year    = {2004},
}

@Article{Doe1999,
  author  = {John Doe and Albert Miller and Jack Frost},
  title   = {Paper 1},
  journal = {Journal of New Research},
  year    = {1999},
}

답변1

authoryear-comp대신 스타일을 사용하십시오 authoryear.

관련 정보