我在论文中使用chapterbib
和(没有,因为它会干扰类文件)。章节参考书目在目录中按章节级别列出。我怎样才能让它定位在节级别?bibtex
natbib
答案1
这chapterbib
包提供了sectionbib
将参考书目放在书籍(book
,report
...)文档的章节级别的选项。检查文档。
以下是 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}
以下是目录: