如何避免将章节参考书目打印在 bilatex 的目录中?

如何避免将章节参考书目打印在 bilatex 的目录中?

使用带有 daleif 章节样式的回忆录类。我有一个 bib 文件,并试图获取按章节划分的参考书目。

\documentclass{memoir}
\usepackage[refsection=chapter,backend=biber]{biblatex}
\addbibresource{references}
\begin{document}
\begin{document}
   \tableofcontents
 \input{Preface}
\chapter{Mentors}
\include{ch2-generatingIdeas}
\include{ch3-evaluatingIdeas}
\end{document}    

这是我在目录页中得到的内容。我想避免在目录页中打印参考书目。如果可能的话,如果参考书目像章节一样打印出来我会很高兴。这可以在 中完成吗biblatex

内容

答案1

memoir开关\nobibintoc使参考书目从目录中消失(反之亦然\bibintoc)。

由于你有每章的参考书目,你可能还需要一个subbibliography,使用

\printbibliography[heading=subbibliography]

平均能量损失

\documentclass{memoir}
\usepackage[refsection=chapter,backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}

\nobibintoc
\begin{document}
\tableofcontents

\chapter{Lorem}
\cite{sigfridsson}
\printbibliography[heading=subbibliography]

\chapter{Ipsum}
\cite{worman}
\printbibliography[heading=subbibliography]
\end{document}  

相关内容