我目前正在创建一份简短的文档,其中包含学校提供的一些项目。但是,每个项目大约有 2-3 个引文,并且每个项目都是独一无二的。
更重要的是,在每个项目结束时我想包含一个小的参考部分,这可能吗?
幸运的是,所有参考文献都来自同一个.bib 文件,但我仍然不确定从哪里开始。
答案1
如果您使用 biblatex,您可以使用环境refsection
来指定具有自己独立参考书目的文本部分,如下所示:
[...]
\begin{refsection} % first project
% some text with citations
\printbibliography % references for the first project
\end{refsection}
\begin{refsection} % second project
% another text with citations
\printbibliography % references for the second project
\end{refsection}
[...]
有关详细信息,请参阅biblatex 文档,第 3.7.4 节(“参考书目章节”)。