.png)
이 tex 코드의 컴파일
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[natbib, maxcitenames=3, style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{bib.bib}
@ARTICLE{G2000,
author = {{Gondek-Rosi{\'n}ska}, D. and {Bulik}, T. and {Zdunik}, L. and
{Gourgoulhon}, E.},
year = 2000
}
@ARTICLE{G2007,
author = {{Gondek-Rosi{\'n}ska}, D. and {Bejger}, M. and {Bulik}, T. and
{Gourgoulhon}, E.},
year = 2007
}
\end{filecontents}
\addbibresource{bib.bib}
\begin{document}
\citep{G2000}\\
\citep{G2007}\\
\end{document}
다음의 출력을 제공합니다.
(Gondek-Rosińska, Bulik 등, 2000)
(Gondek-Rosińska, Bejger 등, 2007)
하지만 첫 번째 저자의 성을 다음과 같이 변경하면 Gandek-Rosi{\'n}ska
다음과 같은 (원하는) 출력이 표시됩니다.
(Gandek-Rosińska 등, 2000)
(Gondek-Rosińska 외, 2007)
실제로 이름을 Kondek-Rosi{\'n}ska
또는 다른 이름으로 변경하면 예상대로 작동합니다. 즉, 첫 번째 저자 이름 뒤에 가 표시됩니다 et al.
. 왜 그렇게 이상한 행동을 하는 걸까요? 나는sharelatex.com.
답변1
버그는 아니지만 동일한 첫 번째 저자의 두 출판물을 구별하는 기능입니다. 비활성화하려면 를 설정할 수 있습니다 uniquelist=false
.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[natbib, maxcitenames=3, style=authoryear, uniquelist=false]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{bib.bib}
@ARTICLE{G2000,
author = {{Gondek-Rosi{\'n}ska}, D. and {Bulik}, T. and {Zdunik}, L. and
{Gourgoulhon}, E.},
year = 2000
}
@ARTICLE{G2007,
author = {{Gondek-Rosi{\'n}ska}, D. and {Bejger}, M. and {Bulik}, T. and
{Gourgoulhon}, E.},
year = 2007
}
\end{filecontents}
\addbibresource{bib.bib}
\begin{document}
\citep{G2000}\\
\citep{G2007}\\
\end{document}