私は LaTeX 初心者で、LaTeX を使って論文を準備しています。私の論文は 2 つの部分から構成されています。パート I には 3 つの章が含まれ、パート II にはいくつかの論文が含まれます。パート II では、各論文を前の論文とは別にして独立させたいと思っています。
私はこれをします:
\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 の参考文献がパート I と混在してしまいます。パート I とは別にする必要があります。
モハメッドの助けに感謝します