Here is my problem, for which I couldn't find a solution : I would just like to separate my biblio for every chapter, but I can't manage to do it. Here is how I proceeded, and the result :
In a folder I have my main .tex file. In this .tex file, I recall my different chapters (using \input) which are all in different subfolder (for pratical reasons). In the main folder, I have the different .bib files (so they are not in the same subfolder than the chapters).
In my main .tex file, I have the command :
Code: Select all
\usepackage[sectionbib]{chapterbib}
\bibliographystyle{IEEEtran}
Code: Select all
\lhead[]{Chapter 1}
\newpage
\input{Chap_1/Chap1}
\newpage
%Biblio Chapter 1
\bibliography{Bib_Ch1}
\newpage
\lhead[]{Chapter 2}
\newpage
\input{Chap_2/Chap2}
\newpage
%Biblio Chapter 2
\bibliography{Bib_Ch2}
\newpage
Could you explain me how to link the "Bib_Ch1.bib" file to the first chapter and the "Bib_Ch2.bib" to the second one ? Should I put the command "\bibliography{Bib_Ch1}" directly in the "Chap_1.tex" file and the command "\bibliography{Bib_Ch2}" in the "Chap_2.tex" file ? I'm a bit lost, thanks for your help !