저는 라텍스를 처음 접하고 라텍스로 논문을 준비하고 있습니다. 내 논문은 2부분으로 구성되어 있습니다. 1부는 3개의 장으로 구성되어 있고, 2부는 여러 논문으로 구성되어 있습니다. 2부에서는 각 논문을 이전 논문과 분리되고 독립적으로 만들고 싶습니다.
나는 이것을한다:
\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가 있습니다. 그러다가 편집할 때 Paper A의 참고문헌이 Part I과 섞여 있습니다. Part I과 별도로 필요합니다.
도움을 주셔서 감사합니다. 모하마드