我如何按章节对参考文献进行排序?

我如何按章节对参考文献进行排序?

我正在写一份报告,我想在文档末尾有一个参考书目,其中的参考文献按章节排序,如下所示:

第 1 章标题 ref 1 ref 2

第 2 章的标题 ref 4 ref5

有人知道我该怎么做吗?

答案1

我知道的最简单的方法是使用biblatex。例如,

\documentclass[letterpaper,11pt]{memoir}

%refsegment specifies that each chapter will be a
% separate segment of a unified bibliography
\usepackage[refsegment=chapter]{biblatex}

\bibliography{ ... } % reference bib files as per normal

\begin{document}
\chapter{one}
% add some citations

\chapter{two}
% add more citations


% loop over each segment (chapters in this case) and
% \printbibliography for each one
\bibbysegment
\end{document}

相关内容