消失的书目

消失的书目

这和我之前的帖子有点相关:

获取大型文档中附录的正确章节编号

我正在构建一篇包含独立文章的论文。我有一个文件 main.tex 和一个介绍文件 intro.tex,以及两篇文章 article1.tex 和 article2.tex。下面我仅显示了包含介绍和文章 1 的 main.tex:

\begin{document}
some codes for the first few pages
\include{intro}

some code for some intermediate pages

\begingroup

\renewcommand{\appendix}{%
  \par
  \setcounter{section}{0}%
 \renewcommand{\thesection}{\thechapter.\Alph{section}}%
}

\include{article1}

\endgroup
\end{document}

在 intro.tex 中,最后我有:

\bibliography{lic}
\bibliographystyle{unsrt}

在 article1.tex 中,最后我有:

\bibliography{mybibs1}
\bibliographystyle{unsrt}

编译没有问题,但我发现在 pdf 文件中第 1 篇文章之后,出现了 Bibliography lic 而不是 mybibibs1。正如预期的那样,Intro 后面跟着 Bibliography lic,但令我惊讶的是,在第 1 篇文章之后,我也得到了 Bibliiography lic。当然,在第 1 篇文章中的每个引用处我都得到了 [?]。

这里出了什么问题?

答案1

我放进去了\usepackage{chapterbib},现在它工作正常。也欢迎任何其他解决方案。我们能用 multibib 做到这一点吗?

由于没有其他答案,我接受我自己的答案。

相关内容