我是 Latex 新手,正在用 Latex 准备论文。我的论文由两部分组成。第一部分包括 3 章,而第二部分包括多篇论文。在第二部分中,我希望每篇论文都独立于前一篇论文。
我这样做:
\documentclass[11pt, twoside]{book}
\usepackage[utf8]{inputenc}
% and some other packages
\begin{document}
\part{Part I}
\chapter{1}
\chapter{2}
\chapter{3}
\bibliographystyle{abbrv}
\bibliography{MyCollection} % the bib file of my references
\part{ }
\setcounter{chapter}{0}
\setcounter{section}{0}
\renewcommand{\thesection}{\arabic{section}}
\chapter*{Paper A}
\addcontentsline{toc}{chapter}{Paper A}
\include{PaperA}
\end{document}
论文 A 本身已经有了一个 bib 文件,并且在末尾有一个 \bibliography。然后当我编译时,论文 A 的参考书目与第一部分混在一起。我需要将其与第一部分分开。
我很感激穆罕默德的帮助