ToC 中章节级别的章节书目

ToC 中章节级别的章节书目

我在论文中使用chapterbib和(没有,因为它会干扰类文件)。章节参考书目在目录中按章节级别列出。我怎样才能让它定位在节级别?bibtexnatbib

答案1

chapterbib包提供了sectionbib将参考书目放在书籍(bookreport...)文档的章节级别的选项。检查文档

以下是 MWE:

\documentclass{report}
\begin{filecontents}{chap1.tex}
  \chapter{First Chapter}
  \section{A section}
  \blindtext
  \cite{book-full}
  \bibliographystyle{plain}
  \bibliography{xampl}
\end{filecontents}
\begin{filecontents}{chap2.tex}
  \chapter{Second Chapter}
  \section{Another section}
  \blindtext
  \cite{article-full}
  \bibliographystyle{plain}
  \bibliography{xampl}
\end{filecontents}
\usepackage[sectionbib]{chapterbib}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\include{chap1}
\include{chap2}
\bibliographystyle{plain}
\bibliography{xampl}
\end{document}

以下是目录:

在此处输入图片描述

相关内容