멀티빕과 챕터빕을 결합한 제품

멀티빕과 챕터빕을 결합한 제품

documentclass를 사용하여 LaTeX에서 논문을 컴파일하고 있습니다 book.

논문은 별도의 논문이 포함된 여러 장으로 구성됩니다. 따라서 각 장에는 별도의 참고 문헌 목록이 필요합니다. 한 장에서는 본문에 대한 참조 목록 하나와 부록에 대한 참조 목록 하나를 원하기 때문에 두 개의 별도 참조 목록도 갖고 싶습니다. chapterbib각 장에 대한 별도의 참조 목록을 얻는 데 사용할 수 있습니다 . 가 없지만 chapterbib을 사용하면 multibib한 장에서 두 개의 참고 목록을 얻을 수 있습니다. 그런데 이 두 가지를 결합하려고 하면 작동하지 않습니다.

chapterbib다음은 각 장에 대한 참조를 제공하는 최소 작업 예입니다 .

\documentclass[a4paper, 12pt,notitlepage]{book}
\usepackage{natbib}
\usepackage{chapterbib} 

\begin{filecontents}{chapter1.tex}
chapter1.tex:
\chapter{First chapter}
This text is first and this cite \citep{Cappelen:2007} belongs to this cite.
\bibliographystyle{chicago}
\bibliography{bibliography}
\end{filecontents}

\begin{filecontents}{chapter2.tex}
\chapter{Second chapter}
This is a reference in the second chapter \citep{Camerer:2003}
\bibliographystyle{chicago}
\bibliography{bibliography}
\end{filecontents}

\begin{document}
\include{chapter1}
\include{chapter2}
\end{document}

multibib다음은 한 장에 두 개의 참조 목록을 제공하는 최소한의 작업 예입니다 .

\documentclass[a4paper, 12pt,notitlepage]{book}
\usepackage{natbib}
\usepackage{multibib} %TO ALLOW TWO REFERENCE LISTS:
\newcites{New}{Appendix references} % Create command that signals that the cite belongs to the second reference list.

\begin{document}
\chapter{First chapter}
This text is first and this cite \citep{Cappelen:2007} belongs to this cite.

\bibliographystyle{chicago}
\bibliography{bibliography}

\section{Appendix}
This text is in the appendix and this cite belongs to the appendix \citepNew{Akerlof:1982}.
\bibliographystyleNew{chicago}
\bibliographyNew{bibliography}

\end{document}

두 예제를 결합하려고 하면 오류가 발생합니다.

불법입니다. 또 다른 \bibdata 명령이군요.

그래서 나는 그 둘이 갈등을 겪고 있다는 것을 이해합니다. 내가 원하는 것을 수행하는 데 적합한 방법을 제안할 수 있는 사람이 있습니까?

관련 정보