这个围兜条目有什么问题?

这个围兜条目有什么问题?
@INCOLLECTION{Masson-Delmotte2021-ms,
  title     = "{IPCC} - Climate Change 2021: The Physical Science Basis.
                 Contribution of Working Group {I} to the Sixth Assessment
                 Report of the Intergovernmental Panel on Climate Change",
  author    = "Masson-Delmotte, V. and Zhai, P. and Pirani, A. and Connors, S.L.
               and P{\'e}an, C. and Berger, S. and Caud, N. and Chen, Y. and
               Goldfarb, L and Gomis, M.I. and Huang, M. and Leitzell, K. and Lonnoy, E.
               and Matthews, J.B.R. and Maycok, T.K. and Waterfield, T. and Yelek{\c c}i,
               O. and Yu, R. and Zhou, B.",
  editor    = "{MassonDelmotte, V., P. Zhai, A. Pirani, S.L. Connors, C.
               P{\'e}an, S. Berger, N. Caud, Y. Chen, L. Goldfarb, M.I. Gomis,
               M. Huang, K. Leitzell, E. Lonnoy, J.B.R. Matthews, T.K. Maycock,
               T. Waterfield, O. Yelek{\c c}i, R. Yu, and B. Zhou (eds.)}",
  publisher = "Cambridge University Press. In Press",
  year      =  2021
}


@INCOLLECTION{Gulev2021-gi,
  title     = "Changing State of the Climate System -- Climate Change 2021: The Physical Science Basis. Contribution of
               Working Group {I} to the Sixth Assessment Report of the
               Intergovernmental Panel on Climate Change",
  author    = "Gulev, S.K. and Thorne, P.W. and Ahn, J. and
               Dentener, F.J. and Domingues, C.M. and Gerland, S. and Gong,
               D. and Kaufman, D.S. and Nnamchi, H.C. and and Quaas,
               J. and Rivera, J.A. and Sathyendranath, S. and Smith, S.L. and Trewin,
               B. and Schumann, K. and Rose, R.S",
  editor    = "{MassonDelmotte, V., P. Zhai, A. Pirani, S.L. Connors, C.
               P{\'e}an, S. Berger, N. Caud, Y. Chen, L. Goldfarb, M.I. Gomis,
               M. Huang, K. Leitzell, E. Lonnoy, J.B.R. Matthews, T.K. Maycock,
               T. Waterfield, O. Yelek{\c c}i, R. Yu, and B. Zhou (eds.)}",
  publisher = "Cambridge University Press. In Press",
  year      =  2021
}

两个 bib 条目中有一个有效。你能告诉我后者有什么问题吗?

\documentclass[twoside=semi]{scrbook}
\usepackage[style=authoryear]{biblatex}
\addbibresource{mini.bib}
\bibliographystyle{apalike}
\renewcommand*{\nameyeardelim}{\addcomma\space}


\begin{document}

\parencite{Masson-Delmotte2021-ms} %works
\parencite{Gulev2021-gi} %does not work - why?

\printbibliography \newpage
\end{document}

答案1

  1. \bibliographystyle{apalike}是一个BibTeX命令,并且不能与biblatex(尝试)一起使用biblatex-apa

  2. and的作者字段中有两个连续的Gulev2021-gi,删除一个可以解决问题(一定有一个biber-warning)。

相关内容