我正在考虑在每章末尾打印参考书目,其中只需要打印引用的内容。但我在每章末尾打印了所有内容。我正在使用
\documentclass{report}
\usepackage[backend=biber,style=numeric,autocite=plain,sorting=none]{biblatex}
\addbibresource{report.bib}
\begin{document}
\chapter{Chapter 1}
Test\cite{1}
\printbibliography[heading=subbibliography]
\chapter{Chapter 2}
Test\cite{2}\cite{3}
\printbibliography[heading=subbibliography]
\end{document}
答案1
给予
\usepackage[backend=biber, refsegment=chapter, defernumbers=true]{biblatex}
\printbibliography[segment=1,heading=subbibliography]
解决了问题