My work has 4 chapters. I use one bibliography file for all of them.
I would like to have separate bibliography for each chapter but they should all be at the end of the work (not following each chapter).
It would also be nice if I could reset citation counter at the end of each chapter.
Basically this is how the structure should look:
The additional problem might be that I need to separate each bibliography into two subgroups. I do that now by using this:Chapter 1
Chapter 2 (citation counter starts new from 1)
Chapter 3 (citation counter starts new from 1)
Chapter 4 (citation counter starts new from 1)
Bibliography for Chapter 1
Bibliography for Chapter 2
Bibliography for Chapter 3
Bibliography for Chapter 4
Code: Select all
\addcontentsline{toc}{section}{Quellenverzeichnis}
\bibliographysec{Bibliographie/bibliographie}
\bibliographystylesec{jurabib}
\addcontentsline{toc}{section}{Literaturverzeichnis}
\renewcommand{\refname}{Literaturverzeichnis}
\bibliography{Bibliographie/bibliographie}
\bibliographystyle{jurabib}
Anyone knows how this can be done? Let me know if MWE or some additional explanation is necessary.Chapter 1
Chapter 2 (citation counter starts new from 1)
Chapter 3 (citation counter starts new from 1)
Chapter 4 (citation counter starts new from 1)
PRIMARY Bibliography for Chapter 1
SECONDARY Bibliography for Chapter 1
PRIMARY Bibliography for Chapter 2
SECONDARY Bibliography for Chapter 2
PRIMARY Bibliography for Chapter 3
SECONDARY Bibliography for Chapter 3
PRIMARY Bibliography for Chapter 4
SECONDARY Bibliography for Chapter 4
Thank you