Bibtex crossref 字段用于什么?

Bibtex crossref 字段用于什么?

主要问题总结了一下。我理解什么是交叉引用,但我不知道如何在 bibtex 字段中使用它。我不知道这是否更多地出现在不同的学科中,或者我只是不理解 bibtex 字段的用途。也许一些简单的例子会有所帮助。

答案1

crossref如果有多个条目涉及同一会议论文集、书籍或类似内容,则可以使用。优点是所有条目共有的内容只需指定一次,例如,如果 Duck 和 Mouse 都为同一会议撰写了会议论文集,则只需提供一次该会议的年份或标题。

\documentclass{article}
\usepackage[mincrossrefs=99]{biblatex}

\begin{filecontents}[overwrite]{\jobname.bib}
@inproceedings{duck2015,
    author = {Duck, D.},
    title = {Duck tales},
    crossref = {ICRC2015},
}

@inproceedings{mouse2015,
    author = {Mouse, M.},
    title = {Mouse stories},
    crossref = {ICRC2015},
}

@proceedings{ICRC2015,
    title = "{Proceedings of the 34\textsuperscript{th} International Cosmic Ray Conference}",
    year = "2015",
    month = aug,
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
\cite{duck2015}
\cite{mouse2015}

\printbibliography
\end{document}

相关内容