是否可以对整个论文使用一个 bib 文件并生成逐章参考文献列表?

是否可以对整个论文使用一个 bib 文件并生成逐章参考文献列表?

我浏览了一下并没有找到我想要的东西。

我正在寻找一种方法: - 对整个论文使用一个 BIB 文件。 - 让 Latex 生成逐章参考列表。

这可能吗?怎么做?

任何帮助都将受到赞赏。

附言:看起来每个人都为每一章制作了一个不同的 bib 文件。:/

答案1

现有的所有解决方案(从 chapterbib 到 biblatex/biber)都不关心您如何在 bib 文件中组织 bib 条目。您可以使用一个或十个 bib 文件。使用 biblatex,您可以使用 refsections 或 refsegments 来拆分参考书目。以下是 refsegment 的示例。我使用\section而不是\chapter将所有内容放在一页上,但它也适用于\chapter

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[refsegment=section,style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}

\section{first}
\cite{doody}

\printbibliography[segment=\therefsegment,title=first bib]

\section{second}
\cite{herrmann, doody}

\printbibliography[segment=\therefsegment,title=second bib]
\end{document}

在此处输入图片描述

相关内容