文章的单独参考文献

文章的单独参考文献

我必须写一篇大约 5-6 页长的文章,以便描述 3 个不同的项目。我希望在 3 个项目的末尾都有单独的参考资料。我找到了一些示例,说明在文档类为书籍的情况下如何实现这一点,但在文章的情况下却行不通。

我需要一些帮助。

非常感谢。

答案1

refsections(或refsegments,如果标签应该是全局的)可能会有所帮助。每个都refsection可以通过以 开头的数字来寻址1

\documentclass{article}

\usepackage[style=authoryear]{biblatex}
\addbibresource{test.bib}

\begin{document}

\begin{refsection}
\section{section 1}
\cite{aaa}
\end{refsection}

\begin{refsection}
\section{section 2}
\cite{bbb}
\end{refsection}

\printbibliography[section=1]

\printbibliography[section=2]


\end{document}

相关内容