如何引用一篇论文并提及其首次发表的年份?

如何引用一篇论文并提及其首次发表的年份?

我想引用 A.F. Möbius 的论文《重心计算》。它最早发表于 1827 年,但我要引用的文本来自他的《Gesammelte Werke》,即《文集》,该书于 1885 年出版。我怎样才能让它被引用为“Möbius (1827)”,而不是“Möbius (1885)”,但又不至于写错

year = 1885

目前,我使用 @incollection 来收集书中的论文或论文集,也尝试过 @inbook。哪一个更合适?我想要的可以实现吗?

非常感谢!

答案1

@inbook我将与以下领域合作crossref

\RequirePackage{filecontents}
\begin{filecontents}{reference.bib}
@book{moebius1885,
      author = {A. F. Möbius},
      title = {Gesammelte Werke},
      year = {1885},
    }
@inbook{moebius1827,
      author = {A. F. Möbius},
      title = {Der barycentrische Calcul},
      year = {1827},
     crossref={moebius1885}
    }
\end{filecontents}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[style=authoryear,dashed=false]{biblatex}
\addbibresource{reference.bib}
\begin{document}
\cite{moebius1885}

\cite{moebius1827}

\printbibliography
\end{document}

在此处输入图片描述

相关内容